rust/tests/ui/parser/raw/raw-string.rs

5 lines
76 B
Rust

fn main() {
let x = r##"lol"#;
//~^ ERROR unterminated raw string
}