2019-03-13 04:47:36 +00:00
|
|
|
error: unknown start of token: \u{201c}
|
2021-04-03 11:05:11 +00:00
|
|
|
--> $DIR/unicode-quote-chars.rs:2:14
|
2019-02-17 01:56:12 +00:00
|
|
|
|
|
|
|
|
LL | println!(“hello world”);
|
|
|
|
| ^
|
2019-10-24 05:20:58 +00:00
|
|
|
|
|
2019-02-17 01:56:12 +00:00
|
|
|
help: Unicode characters '“' (Left Double Quotation Mark) and '”' (Right Double Quotation Mark) look like '"' (Quotation Mark), but are not
|
|
|
|
|
|
|
|
|
LL | println!("hello world");
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~~~~~~~~~~~~~
|
2019-02-17 01:56:12 +00:00
|
|
|
|
2019-07-30 09:33:32 +00:00
|
|
|
error: unknown start of token: \u{201d}
|
2021-04-03 11:05:11 +00:00
|
|
|
--> $DIR/unicode-quote-chars.rs:2:26
|
2019-07-30 09:33:32 +00:00
|
|
|
|
|
|
|
|
LL | println!(“hello world”);
|
|
|
|
| ^
|
2019-10-24 05:20:58 +00:00
|
|
|
|
|
2019-07-30 09:33:32 +00:00
|
|
|
help: Unicode character '”' (Right Double Quotation Mark) looks like '"' (Quotation Mark), but it is not
|
|
|
|
|
|
|
|
|
LL | println!(“hello world");
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~
|
2019-07-30 09:33:32 +00:00
|
|
|
|
2020-08-31 09:45:50 +00:00
|
|
|
error: expected `,`, found `world`
|
2021-04-03 11:05:11 +00:00
|
|
|
--> $DIR/unicode-quote-chars.rs:2:21
|
2019-07-30 09:33:32 +00:00
|
|
|
|
|
|
|
|
LL | println!(“hello world”);
|
|
|
|
| ^^^^^ expected `,`
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2019-02-17 01:56:12 +00:00
|
|
|
|