]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/suggestions/str-as-char.stderr
New upstream version 1.26.0+dfsg1
[rustc.git] / src / test / ui / suggestions / str-as-char.stderr
index bf975053ffafd28a19241500974ea9379e62a7b1..d881becf00c9ef881d46325f104cf0aaa2adec04 100644 (file)
@@ -1,11 +1,11 @@
 error: character literal may only contain one codepoint
   --> $DIR/str-as-char.rs:12:14
    |
-12 |     println!('●●');
+LL |     println!('●●');
    |              ^^^^
 help: if you meant to write a `str` literal, use double quotes
    |
-12 |     println!("●●");
+LL |     println!("●●");
    |              ^^^^
 
 error: aborting due to previous error