blob: 9be1876b7145b9238d9c8862ebcc5660da9aae2b [file] [log] [blame]
error[E0308]: mismatched types
--> $DIR/lit.rs:7:13
|
LL | "abc" => true,
| ^^^^^ expected &str, found str
|
= note: expected type `&&str`
found type `&'static str`
error[E0308]: mismatched types
--> $DIR/lit.rs:16:9
|
LL | b"abc" => true,
| ^^^^^^ 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`.