summaryrefslogtreecommitdiffstats
path: root/tests/pretty/format-args-str-escape.rs
blob: e596fcfd8bcba34caf5327e2121d83d674e75710 (plain)
1
2
3
4
5
6
7
8
9
10
// pretty-compare-only
// pretty-mode:expanded
// pp-exact:format-args-str-escape.pp

fn main() {
    println!("\x1B[1mHello, world!\x1B[0m");
    println!("\u{1B}[1mHello, world!\u{1B}[0m");
    println!("Not an escape sequence: \\u{{1B}}[1mbold\\x1B[0m");
    println!("{}", "\x1B[1mHello, world!\x1B[0m");
}