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