21 lines
495 B
Text
21 lines
495 B
Text
![]() |
error[E0308]: mismatched types
|
||
|
--> $DIR/lit.rs:19:13
|
||
|
|
|
||
|
19 | "abc" => true,
|
||
|
| ^^^^^ expected &str, found str
|
||
|
|
|
||
|
= note: expected type `&&str`
|
||
|
found type `&'static str`
|
||
|
|
||
|
error[E0308]: mismatched types
|
||
|
--> $DIR/lit.rs:28:9
|
||
|
|
|
||
|
28 | 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
|
||
|
|