mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
9 lines
463 B
Rust
9 lines
463 B
Rust
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
|
|
//~^^^ ERROR unknown start of token: \u{201d}
|
|
//~^^^^ HELP Unicode character '”' (Right Double Quotation Mark) looks like '"' (Quotation Mark), but it is not
|
|
//~^^^^^ ERROR expected `,`, found `world`
|
|
}
|