rust/tests/ui/attributes/unsafe/unsafe-safe-attribute.rs

7 lines
117 B
Rust
Raw Normal View History

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