rust/tests/ui/crashes/ice-6250.stderr

29 lines
831 B
Plaintext
Raw Normal View History

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
...
LL | Some(reference) = cache.data.get(key) {
| ^^^^^^^^^ expected integer, found `&i32`
|
help: consider dereferencing the borrow
|
LL | Some(*reference) = cache.data.get(key) {
2021-08-11 14:21:33 +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 19:23:23 +08:00
|
help: consider adding `let`
|
LL | let Some(reference) = cache.data.get(key) {
| +++
2023-04-20 15:19:36 +00:00
error: aborting due to 2 previous errors
2023-04-20 15:19:36 +00:00
For more information about this error, try `rustc --explain E0308`.