summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-31769.stderr
blob: 03e2f931c847bcf0012c417bdfd613ff631c0300 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error[E0518]: attribute should be applied to function or closure
  --> $DIR/issue-31769.rs:2:5
   |
LL |     #[inline] struct Foo;
   |     ^^^^^^^^^ ----------- not a function or closure

error[E0517]: attribute should be applied to a struct, enum, or union
  --> $DIR/issue-31769.rs:3:12
   |
LL |     #[repr(C)] fn foo() {}
   |            ^   ----------- not a struct, enum, or union

error: aborting due to 2 previous errors

Some errors have detailed explanations: E0517, E0518.
For more information about an error, try `rustc --explain E0517`.