blob: bcd2ef545d815ed93bbb93eca31d21059563a167 [file] [log] [blame]
error: suffixed literals are not allowed in attributes
--> $DIR/malformed-interpolated.rs:13:8
|
LL | check!(0u8);
| ^^^
|
= help: instead of using a suffixed literal (1u8, 1.0f32, etc.), use an unsuffixed version (1, 1.0, etc.).
error: unexpected token: `-0`
--> $DIR/malformed-interpolated.rs:5:25
|
LL | #[rustc_dummy = $expr]
| ^^^^^
...
LL | check!(-0); // ERROR, see above
| ----------- in this macro invocation
error: unexpected token: `0 + 0`
--> $DIR/malformed-interpolated.rs:5:25
|
LL | #[rustc_dummy = $expr]
| ^^^^^
...
LL | check!(0 + 0); // ERROR, see above
| -------------- in this macro invocation
error: aborting due to 3 previous errors