forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#116811 - narpfel:unpretty-unicode-escape-in-format-string-literal, r=Nilstrieb Preserve unicode escapes in format string literals when pretty-printing AST Fixes rust-lang#116799 Thanks to `@Nilstrieb` for the pointer to the correct location, that was really helpful for someone unfamiliar with the codebase.
- 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:format-args-str-escape.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: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"); | ||
} |