rust/src/test/ui/rfc-2005-default-binding-mode/lit.stderr

22 lines
617 B
Plaintext

error[E0308]: mismatched types
--> $DIR/lit.rs:17:13
|
LL | "abc" => true, //~ ERROR mismatched types
| ^^^^^ expected &str, found str
|
= note: expected type `&&str`
found type `&'static str`
error[E0308]: mismatched types
--> $DIR/lit.rs:26:9
|
LL | b"abc" => true, //~ ERROR mismatched types
| ^^^^^^ expected &[u8], found array of 3 elements
|
= note: expected type `&&[u8]`
found type `&'static [u8; 3]`
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0308`.