Improve escaping in string interpolation (#4982)

This commit is contained in:
JT
2022-03-27 12:52:09 +13:00
committed by GitHub
parent 3484e0defd
commit cf88c8eef3
2 changed files with 13 additions and 1 deletions

View File

@ -345,6 +345,11 @@ fn string_escape_interpolation() -> TestResult {
run_test(r#"$"\u015B(char hamburger)abc""#, "ś≡abc")
}
#[test]
fn string_escape_interpolation2() -> TestResult {
run_test(r#"$"2 + 2 is \(2 + 2)""#, "2 + 2 is (2 + 2)")
}
#[test]
fn proper_rest_types() -> TestResult {
run_test(