Skip to content

Commit

Permalink
Add test for raw strings
Browse files Browse the repository at this point in the history
  • Loading branch information
pczarn committed Nov 24, 2023
1 parent 71a011b commit 4bdffc3
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,7 @@ fn main() {
assert(a == b);
assert(b == c);
assert(c == D);
let x = r#"Hello World"#;
let y = r"Hello World";
assert(x == y);
}

0 comments on commit 4bdffc3

Please sign in to comment.