rust/tests/ui/stability-attribute/stability-attribute-non-staged-force-unstable.rs
2024-02-16 20:02:50 +00:00

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() {}