rust/tests/ui/feature-gates/feature-gate-allow-internal-unstable-struct.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
451 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
2025-02-09 21:50:01 +00:00
// FIXME(jdonszelmann): empty attributes are currently ignored, since when its empty no actual
// change is applied. This should be fixed when later moving this check to attribute parsing.
#[allow_internal_unstable(something)] //~ ERROR allow_internal_unstable side-steps
//~| ERROR attribute should
struct S;
fn main() {}