summaryrefslogtreecommitdiffstats
path: root/src/test/ui/stability-attribute/stability-attribute-non-staged-force-unstable.rs
blob: f61acc8aac5db919b6376e1f9fafb188e9f24cc3 (plain)
1
2
3
4
5
// compile-flags:-Zforce-unstable-if-unmarked

#[unstable()] //~ ERROR: stability attributes may not be used
#[stable()] //~ ERROR: stability attributes may not be used
fn main() {}