]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/parser/issue-64732.stderr
New upstream version 1.56.0~beta.4+dfsg1
[rustc.git] / src / test / ui / parser / issue-64732.stderr
index ac042580962807b3ad8421cec438cf016b5db29b..80462549377635fde34774f5ccac7430ff68c5bf 100644 (file)
@@ -7,7 +7,7 @@ LL |     let _foo = b'hello\0';
 help: if you meant to write a byte string literal, use double quotes
    |
 LL |     let _foo = b"hello\0";
-   |                ^^^^^^^^^^
+   |                ~~~~~~~~~~
 
 error: character literal may only contain one codepoint
   --> $DIR/issue-64732.rs:6:16
@@ -18,7 +18,7 @@ LL |     let _bar = 'hello';
 help: if you meant to write a `str` literal, use double quotes
    |
 LL |     let _bar = "hello";
-   |                ^^^^^^^
+   |                ~~~~~~~
 
 error: aborting due to 2 previous errors