mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
36 lines
1.0 KiB
Rust
36 lines
1.0 KiB
Rust
// 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()]
|
|
//~^ ERROR stability attributes may not be used outside of the standard library
|
|
fn f() {}
|
|
|
|
#[stable()]
|
|
//~^ ERROR stability attributes may not be used outside of the standard library
|
|
struct S;
|
|
|
|
#[stable()]
|
|
//~^ ERROR stability attributes may not be used outside of the standard library
|
|
type T = S;
|
|
|
|
#[stable()]
|
|
//~^ ERROR stability attributes may not be used outside of the standard library
|
|
impl S {}
|
|
}
|
|
|
|
fn main() {}
|