-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Preserve unicode escapes in format string literals when pretty-printi…
…ng AST
- Loading branch information
Showing
3 changed files
with
33 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#![feature(prelude_import)] | ||
#![no_std] | ||
#[prelude_import] | ||
use ::std::prelude::rust_2015::*; | ||
#[macro_use] | ||
extern crate std; | ||
// pretty-compare-only | ||
// pretty-mode:expanded | ||
// pp-exact:issue-116799.pp | ||
|
||
fn main() { | ||
{ ::std::io::_print(format_args!("\u{1b}[1mHello, world!\u{1b}[0m\n")); }; | ||
{ ::std::io::_print(format_args!("\u{1b}[1mHello, world!\u{1b}[0m\n")); }; | ||
{ | ||
::std::io::_print(format_args!("Not an escape sequence: \\u{{1B}}[1mbold\\x1B[0m\n")); | ||
}; | ||
{ | ||
::std::io::_print(format_args!("{0}\n", | ||
"\x1B[1mHello, world!\x1B[0m")); | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// pretty-compare-only | ||
// pretty-mode:expanded | ||
// pp-exact:issue-116799.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"); | ||
} |