mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-24 16:42:28 +00:00
14 lines
299 B
Plaintext
14 lines
299 B
Plaintext
error: character literal may only contain one codepoint
|
|
--> $DIR/immediately-followed-by-lt.rs:15:4
|
|
|
|
|
LL | w!('r#long'id);
|
|
| ^^^^^^^^
|
|
|
|
|
help: if you meant to write a string literal, use double quotes
|
|
|
|
|
LL | w!("r#long"id);
|
|
| ~ ~
|
|
|
|
error: aborting due to 1 previous error
|
|
|