rust/src/test/ui/parser/raw/raw_string.rs

5 lines
76 B
Rust
Raw Normal View History

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