mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
20 lines
540 B
Plaintext
20 lines
540 B
Plaintext
error[E0308]: mismatched types
|
|
--> $DIR/char-as-str-multi.rs:5:19
|
|
|
|
|
LL | let _: char = "foo";
|
|
| ---- ^^^^^ expected `char`, found `&str`
|
|
| |
|
|
| expected due to this
|
|
|
|
error[E0308]: mismatched types
|
|
--> $DIR/char-as-str-multi.rs:6:19
|
|
|
|
|
LL | let _: char = "";
|
|
| ---- ^^ expected `char`, found `&str`
|
|
| |
|
|
| expected due to this
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|