2019-02-16 20:56:12 -05:00
|
|
|
fn main() {
|
|
|
|
println!(“hello world”);
|
|
|
|
//~^ ERROR unknown start of token: \u{201c}
|
|
|
|
//~^^ HELP Unicode characters '“' (Left Double Quotation Mark) and '”' (Right Double Quotation Mark) look like '"' (Quotation Mark), but are not
|
2019-07-30 12:33:32 +03:00
|
|
|
//~^^^ ERROR unknown start of token: \u{201d}
|
|
|
|
//~^^^^ HELP Unicode character '”' (Right Double Quotation Mark) looks like '"' (Quotation Mark), but it is not
|
2020-08-31 11:45:50 +02:00
|
|
|
//~^^^^^ ERROR expected `,`, found `world`
|
2019-02-16 20:56:12 -05:00
|
|
|
}
|