rust/src/test/ui/feature-gates/issue-43106-gating-of-stable.rs

31 lines
1.1 KiB
Rust
Raw Normal View History

// Testing gating of `#[stable]` in "weird" places.
//
// This file sits on its own because these signal errors, making
// this test incompatible with the "warnings only" nature of
// issue-43106-gating-of-builtin-attrs.rs
#![stable()]
//~^ ERROR stability attributes may not be used outside of the standard library
#[stable()]
//~^ ERROR stability attributes may not be used outside of the standard library
mod stable {
mod inner { #![stable()] }
//~^ ERROR stability attributes may not be used outside of the standard library
#[stable()] fn f() { }
//~^ ERROR stability attributes may not be used outside of the standard library
#[stable()] struct S;
//~^ ERROR stability attributes may not be used outside of the standard library
2020-01-08 17:02:10 +00:00
//~| ERROR stability attributes may not be used outside of the standard library
#[stable()] type T = S;
//~^ ERROR stability attributes may not be used outside of the standard library
#[stable()] impl S { }
//~^ ERROR stability attributes may not be used outside of the standard library
}
fn main() {}