]> git.lizzy.rs Git - rust.git/blob - src/test/ui/repr.stderr
Auto merge of #81238 - RalfJung:copy-intrinsics, r=m-ou-se
[rust.git] / src / test / ui / repr.stderr
1 error: malformed `repr` attribute input
2   --> $DIR/repr.rs:1:1
3    |
4 LL | #[repr]
5    | ^^^^^^^ help: must be of the form: `#[repr(C)]`
6
7 error: malformed `repr` attribute input
8   --> $DIR/repr.rs:4:1
9    |
10 LL | #[repr = "B"]
11    | ^^^^^^^^^^^^^ help: must be of the form: `#[repr(C)]`
12
13 error: malformed `repr` attribute input
14   --> $DIR/repr.rs:7:1
15    |
16 LL | #[repr = "C"]
17    | ^^^^^^^^^^^^^ help: must be of the form: `#[repr(C)]`
18
19 error: aborting due to 3 previous errors
20