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

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

5 lines
101 B
Rust
Raw Normal View History

fn main() {
2020-03-29 15:34:15 +00:00
let x = r###"here's a long string"# "# "##;
//~^ ERROR unterminated raw string
}