rust/src/test/ui/parser/unicode-quote-chars.rs
2019-02-16 20:56:12 -05:00

8 lines
275 B
Rust

// ignore-tidy-linelength
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
}