2018-08-08 14:28:26 +02:00
|
|
|
error[E0308]: mismatched types
|
2019-02-15 23:54:05 +09:00
|
|
|
--> $DIR/tag-that-dare-not-speak-its-name.rs:11:20
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | let x : char = last(y);
|
2023-01-02 18:00:33 -08:00
|
|
|
| ---- ^^^^^^^ expected `char`, found `Option<_>`
|
2019-11-18 21:00:24 -08:00
|
|
|
| |
|
|
|
|
| expected due to this
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
= note: expected type `char`
|
2020-09-02 10:40:56 +03:00
|
|
|
found enum `Option<_>`
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|