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

22 lines
616 B
Plaintext
Raw Normal View History

error[E0308]: mismatched types
2018-12-25 15:56:47 +00:00
--> $DIR/lit.rs:7:13
|
2018-02-23 00:42:32 +00:00
LL | "abc" => true, //~ ERROR mismatched types
| ^^^^^ expected &str, found str
|
= note: expected type `&&str`
found type `&'static str`
error[E0308]: mismatched types
2018-12-25 15:56:47 +00:00
--> $DIR/lit.rs:16:9
|
2018-02-23 00:42:32 +00:00
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
2018-03-03 14:59:40 +00:00
For more information about this error, try `rustc --explain E0308`.