]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-31769.stderr
Implement RFC 2645 (transparent enums and unions)
[rust.git] / src / test / ui / issues / issue-31769.stderr
1 error[E0518]: attribute should be applied to function or closure
2   --> $DIR/issue-31769.rs:2:5
3    |
4 LL |     #[inline] struct Foo;
5    |     ^^^^^^^^^ ----------- not a function or closure
6
7 error[E0517]: attribute should be applied to struct, enum, or union
8   --> $DIR/issue-31769.rs:3:12
9    |
10 LL |     #[repr(C)] fn foo() {}
11    |            ^   ----------- not a struct, enum, or union
12
13 error: aborting due to 2 previous errors
14
15 Some errors have detailed explanations: E0517, E0518.
16 For more information about an error, try `rustc --explain E0517`.