mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
21 lines
471 B
Plaintext
21 lines
471 B
Plaintext
error: malformed `repr` attribute input
|
|
--> $DIR/repr.rs:1:1
|
|
|
|
|
LL | #[repr]
|
|
| ^^^^^^^ help: must be of the form: `#[repr(C)]`
|
|
|
|
error: malformed `repr` attribute input
|
|
--> $DIR/repr.rs:4:1
|
|
|
|
|
LL | #[repr = "B"]
|
|
| ^^^^^^^^^^^^^ help: must be of the form: `#[repr(C)]`
|
|
|
|
error: malformed `repr` attribute input
|
|
--> $DIR/repr.rs:7:1
|
|
|
|
|
LL | #[repr = "C"]
|
|
| ^^^^^^^^^^^^^ help: must be of the form: `#[repr(C)]`
|
|
|
|
error: aborting due to 3 previous errors
|
|
|