2020-11-07 14:28:55 +00:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/ice-6250.rs:12:14
|
|
|
|
|
|
2021-11-25 18:39:32 +00:00
|
|
|
LL | for reference in vec![1, 2, 3] {
|
|
|
|
| --------- expected due to the type of this binding
|
|
|
|
...
|
2020-11-07 14:28:55 +00:00
|
|
|
LL | Some(reference) = cache.data.get(key) {
|
2021-06-28 18:22:47 +00:00
|
|
|
| ^^^^^^^^^ expected integer, found `&i32`
|
2020-11-07 14:28:55 +00:00
|
|
|
|
2020-11-05 13:29:48 +00:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/ice-6250.rs:12:9
|
|
|
|
|
|
|
|
|
LL | Some(reference) = cache.data.get(key) {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `bool`, found `()`
|
2022-11-09 11:23:23 +00:00
|
|
|
|
|
|
|
|
help: consider adding `let`
|
|
|
|
|
|
|
|
|
LL | let Some(reference) = cache.data.get(key) {
|
|
|
|
| +++
|
2020-11-05 13:29:48 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2020-11-05 13:29:48 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
For more information about this error, try `rustc --explain E0308`.
|