2018-03-24 13:07:18 -05:00
|
|
|
#[non_exhaustive(anything)]
|
2019-05-21 19:47:23 -05:00
|
|
|
//~^ ERROR malformed `non_exhaustive` attribute
|
2018-03-24 13:07:18 -05:00
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
#[non_exhaustive]
|
2022-07-11 12:59:04 -05:00
|
|
|
//~^ ERROR attribute should be applied to a struct or enum [E0701]
|
2018-03-24 13:07:18 -05:00
|
|
|
trait Bar { }
|
|
|
|
|
|
|
|
#[non_exhaustive]
|
2022-07-11 12:59:04 -05:00
|
|
|
//~^ ERROR attribute should be applied to a struct or enum [E0701]
|
2018-03-24 13:07:18 -05:00
|
|
|
union Baz {
|
|
|
|
f1: u16,
|
|
|
|
f2: u16
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() { }
|