For macros that are implemented on the compiler, we do *not* mention the `-Zmacro-backtrace` flag. This includes `derive`s and standard macros.
27 lines
971 B
Plaintext
27 lines
971 B
Plaintext
error: invalid asm template string: unmatched `}` found
|
||
--> $DIR/ice-bad-err-span-in-template-129503.rs:12:10
|
||
|
|
||
LL | asm!(concat!(r#"lJÆ<F0908FBF>.<>"#, "r} {}"));
|
||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ unmatched `}` in asm template string
|
||
|
|
||
= note: if you intended to print `}`, you can escape it using `}}`
|
||
|
||
error: invalid asm template string: unmatched `}` found
|
||
--> $DIR/ice-bad-err-span-in-template-129503.rs:18:10
|
||
|
|
||
LL | asm!(concat!("abc", "r} {}"));
|
||
| ^^^^^^^^^^^^^^^^^^^^^^^ unmatched `}` in asm template string
|
||
|
|
||
= note: if you intended to print `}`, you can escape it using `}}`
|
||
|
||
error: invalid asm template string: unmatched `}` found
|
||
--> $DIR/ice-bad-err-span-in-template-129503.rs:24:19
|
||
|
|
||
LL | asm!("abc", "r} {}");
|
||
| ^ unmatched `}` in asm template string
|
||
|
|
||
= note: if you intended to print `}`, you can escape it using `}}`
|
||
|
||
error: aborting due to 3 previous errors
|
||
|