rust/tests/ui/statics/nested-allocations-dont-inherit-codegen-attrs.rs
2024-03-31 22:34:00 -04:00

12 lines
330 B
Rust

//@ build-pass
// Make sure that the nested static allocation for `FOO` doesn't inherit `no_mangle`.
#[no_mangle]
pub static mut FOO: &mut [i32] = &mut [42];
// Make sure that the nested static allocation for `BAR` doesn't inherit `export_name`.
#[export_name = "BAR_"]
pub static mut BAR: &mut [i32] = &mut [42];
fn main() {}