summary refs log tree commit diff
path: root/src/test/ui/repr.stderr
blob: 7ebfe083ddd01b77f4c2536c27e5d8631a1bc085 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error: attribute must be of the form `#[repr(C, packed, ...)]`
  --> $DIR/repr.rs:1:1
   |
LL | #[repr]
   | ^^^^^^^

error: attribute must be of the form `#[repr(C, packed, ...)]`
  --> $DIR/repr.rs:5:1
   |
LL | #[repr = "B"]
   | ^^^^^^^^^^^^^

error: attribute must be of the form `#[repr(C, packed, ...)]`
  --> $DIR/repr.rs:9:1
   |
LL | #[repr = "C"]
   | ^^^^^^^^^^^^^

error: aborting due to 3 previous errors