blob: 3375210fc59ebd105cfe7adda4e3a79ab09a646f [file] [log] [blame]
#![feature(non_exhaustive)]
#[non_exhaustive(anything)]
//~^ ERROR attribute must be of the form
struct Foo;
#[non_exhaustive]
//~^ ERROR attribute can only be applied to a struct or enum [E0701]
trait Bar { }
#[non_exhaustive]
//~^ ERROR attribute can only be applied to a struct or enum [E0701]
union Baz {
f1: u16,
f2: u16
}
fn main() { }