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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

5 lines
76 B
Rust
Raw Normal View History

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