rust/tests/ui/stability-attribute/stability-attribute-non-sta...

6 lines
183 B
Rust

//@ compile-flags:-Zforce-unstable-if-unmarked
#[unstable()] //~ ERROR: stability attributes may not be used
#[stable()] //~ ERROR: stability attributes may not be used
fn main() {}