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