]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/raw-str.rs
Rollup merge of #53545 - FelixMcFelix:fix-50865-beta, r=petrochenkov
[rust.git] / src / test / run-pass / raw-str.rs
1 // Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // ignore-tidy-tab
12 // ignore-tidy-linelength
13
14 pub fn main() {
15     assert_eq!(r"abc", "abc");
16
17     assert_eq!(r#"abc"#, "abc");
18
19     assert_eq!(r"###", "###");
20
21     assert_eq!(r"\", "\\");
22
23     assert_eq!(r#"\""#, "\\\"");
24
25     assert_eq!(r#"#"\n""#, "#\"\\n\"");
26
27     assert_eq!(r##"a"#"b"##, "a\"#\"b");
28
29     // from rust.vim
30     assert_eq!(r#""%\(\d\+\$\)\=[-+' #0*]*\(\d*\|\*\|\*\d\+\$\)\(\.\(\d*\|\*\|\*\d\+\$\)\)\=\([hlLjzt]\|ll\|hh\)\=\([aAbdiuoxXDOUfFeEgGcCsSpn?]\|\[\^\=.[^]]*\]\)""#,
31                "\"%\\(\\d\\+\\$\\)\\=[-+' #0*]*\\(\\d*\\|\\*\\|\\*\\d\\+\\$\\)\\(\\.\\(\\d*\\|\\*\\|\\*\\d\\+\\$\\)\\)\\=\\([hlLjzt]\\|ll\\|hh\\)\\=\\([aAbdiuoxXDOUfFeEgGcCsSpn?]\\|\\[\\^\\=.[^]]*\\]\\)\"");
32
33     assert_eq!(r"newline:'
34 ', tab:'        ', unicode:'●', null:'\0'",
35         "newline:'\n', tab:'\t', unicode:'\u{25cf}', null:'\0'");
36 }