2017-10-06 15:30:23 -05:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/lit.rs:19:13
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | "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
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | 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
|
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0308`.
|