rust/tests/ui/crashes/ice-6250.stderr
2023-06-26 14:13:07 +00:00

29 lines
831 B
Plaintext

error[E0308]: mismatched types
--> $DIR/ice-6250.rs:12:14
|
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) {
| +
error[E0308]: mismatched types
--> $DIR/ice-6250.rs:12:9
|
LL | Some(reference) = cache.data.get(key) {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `bool`, found `()`
|
help: consider adding `let`
|
LL | let Some(reference) = cache.data.get(key) {
| +++
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0308`.