rust/tests/ui/issues/issue-43988.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

57 lines
1.7 KiB
Plaintext
Raw Normal View History

error: malformed `repr` attribute input
2018-12-25 15:56:47 +00:00
--> $DIR/issue-43988.rs:24:5
2018-07-15 21:11:54 +00:00
|
LL | #[repr]
| ^^^^^^^ help: must be of the form: `#[repr(C)]`
2018-07-15 21:11:54 +00:00
error: malformed `repr` attribute input
--> $DIR/issue-43988.rs:34:14
2018-07-15 21:11:54 +00:00
|
LL | let _z = #[repr] 1;
| ^^^^^^^ help: must be of the form: `#[repr(C)]`
2018-07-15 21:11:54 +00:00
error[E0518]: attribute should be applied to function or closure
2018-12-25 15:56:47 +00:00
--> $DIR/issue-43988.rs:5:5
2018-07-15 21:11:54 +00:00
|
LL | #[inline]
| ^^^^^^^^^
LL | let _a = 4;
| ----------- not a function or closure
error[E0518]: attribute should be applied to function or closure
2018-12-25 15:56:47 +00:00
--> $DIR/issue-43988.rs:10:5
2018-07-15 21:11:54 +00:00
|
LL | #[inline(XYZ)]
| ^^^^^^^^^^^^^^
LL | let _b = 4;
| ----------- not a function or closure
error[E0552]: unrecognized representation hint
--> $DIR/issue-43988.rs:14:12
2018-07-15 21:11:54 +00:00
|
LL | #[repr(nothing)]
| ^^^^^^^
|
= help: valid reprs are `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
2018-07-15 21:11:54 +00:00
error[E0552]: unrecognized representation hint
--> $DIR/issue-43988.rs:18:12
2018-07-15 21:11:54 +00:00
|
LL | #[repr(something_not_real)]
| ^^^^^^^^^^^^^^^^^^
|
= help: valid reprs are `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
2018-07-15 21:11:54 +00:00
error[E0518]: attribute should be applied to function or closure
--> $DIR/issue-43988.rs:30:5
2018-07-15 21:11:54 +00:00
|
LL | #[inline(ABC)]
| ^^^^^^^^^^^^^^
LL | foo();
| ----- not a function or closure
error: aborting due to 7 previous errors
2018-07-15 21:11:54 +00:00
Some errors have detailed explanations: E0518, E0552.
For more information about an error, try `rustc --explain E0518`.