rust/tests/ui/attributes/unsafe/unsafe-safe-attribute.rs
2024-06-06 20:26:28 -05:00

7 lines
117 B
Rust

#![feature(unsafe_attributes)]
#[unsafe(repr(C))] //~ ERROR: is not an unsafe attribute
struct Foo {}
fn main() {}