2017-10-06 15:30:23 -05:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/lit.rs:19:13
|
|
|
|
|
|
2017-11-20 06:13:27 -06:00
|
|
|
19 | "abc" => true, //~ ERROR mismatched types
|
2017-10-06 15:30:23 -05:00
|
|
|
| ^^^^^ expected &str, found str
|
|
|
|
|
|
|
|
|
= note: expected type `&&str`
|
|
|
|
found type `&'static str`
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/lit.rs:28:9
|
|
|
|
|
|
2017-11-20 06:13:27 -06:00
|
|
|
28 | b"abc" => true, //~ ERROR mismatched types
|
2017-10-06 15:30:23 -05:00
|
|
|
| ^^^^^^ expected &[u8], found array of 3 elements
|
|
|
|
|
|
|
|
|
= note: expected type `&&[u8]`
|
|
|
|
found type `&'static [u8; 3]`
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|