We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d463274 commit 8cd51ffCopy full SHA for 8cd51ff
src/test/run-pass/lexer-crlf-line-endings-string-literal-doc-comment.rs
@@ -30,6 +30,9 @@ literal";
30
let s = r"string
31
literal";
32
assert_eq!(s, "string\nliteral");
33
+ let s = br"byte string
34
+literal";
35
+ assert_eq!(s, "byte string\nliteral".as_bytes());
36
37
// validate that our source file has CRLF endings
38
let source = include_str!("lexer-crlf-line-endings-string-literal-doc-comment.rs");
0 commit comments