Open
Description
Given the following code:
fn main() {
println!("hello {}"̣, 1);
}
The current output is:
error: unknown start of token: \u{323}
--> src/main.rs:2:23
|
2 | println!("hello{}"̣, 1);
| ^
error: could not compile `playground` due to previous error
Ideally the output should look like:
error: unknown start of token: \u{323}
--> src/main.rs:2:23
|
2 | println!("hello{}"\u{323}, 1);
| ^
help: Unicode character '\u{323}' might not be visible when rendered
error: could not compile `playground` due to previous error