]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/rfc-2005-default-binding-mode/lit.stderr
Remove E0308 note when primary label has all info
[rust.git] / src / test / ui / rfc-2005-default-binding-mode / lit.stderr
index b78b4432bbe31700c8b7bfaf3ccfe9dd74cb8358..fd48c56c07b798360cf6d7f11765536afcf0c0df 100644 (file)
@@ -1,20 +1,20 @@
 error[E0308]: mismatched types
   --> $DIR/lit.rs:7:13
    |
-LL |             "abc" => true, //~ ERROR mismatched types
+LL |             "abc" => true,
    |             ^^^^^ expected &str, found str
    |
-   = note: expected type `&&str`
-              found type `&'static str`
+   = note:   expected type `&&str`
+           found reference `&'static str`
 
 error[E0308]: mismatched types
   --> $DIR/lit.rs:16:9
    |
-LL |         b"abc" => true, //~ ERROR mismatched types
-   |         ^^^^^^ expected &[u8], found array of 3 elements
+LL |         b"abc" => true,
+   |         ^^^^^^ expected &[u8], found array `[u8; 3]`
    |
-   = note: expected type `&&[u8]`
-              found type `&'static [u8; 3]`
+   = note:   expected type `&&[u8]`
+           found reference `&'static [u8; 3]`
 
 error: aborting due to 2 previous errors