os-rust/src/test/ui/feature-gates/feature-gate-allow-internal-unstable-struct.rs

8 lines
223 B
Rust
Raw Normal View History

// checks that this attribute is caught on non-macro items.
// this needs a different test since this is done after expansion
#[allow_internal_unstable] //~ ERROR allow_internal_unstable side-steps
struct S;
fn main() {}