rust/tests/ui/issues/issue-45562.fixed
2025-10-08 17:46:33 +02:00

8 lines
154 B
Rust

//@ run-rustfix
#![deny(unused_attributes)]
#[no_mangle] pub static RAH: usize = 5;
//~^ ERROR const items should never be `#[no_mangle]`
fn main() {}