2024-03-08 18:35:57 -06:00
|
|
|
error[E0762]: unterminated character literal
|
2024-03-13 19:22:52 -05:00
|
|
|
--> $DIR/lex-bad-str-literal-as-char-3.rs:5:26
|
2024-03-08 18:35:57 -06:00
|
|
|
|
|
|
|
|
LL | println!('hello world');
|
2024-03-13 19:22:52 -05:00
|
|
|
| ^^^
|
2024-03-08 18:35:57 -06:00
|
|
|
|
|
2024-03-13 18:52:04 -05:00
|
|
|
help: if you meant to write a string literal, use double quotes
|
2024-03-08 18:35:57 -06:00
|
|
|
|
|
|
|
|
LL | println!("hello world");
|
|
|
|
| ~ ~
|
|
|
|
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0762`.
|