blob: b538a97280d5c730e3c04b223490386559ab2ce2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#[non_exhaustive(anything)]
//~^ ERROR malformed `non_exhaustive` attribute
struct Foo;
#[non_exhaustive]
//~^ ERROR attribute cannot be used on
trait Bar { }
#[non_exhaustive]
//~^ ERROR attribute cannot be used on
union Baz {
f1: u16,
f2: u16
}
fn main() { }
|