We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0af50b4 + 9a6ae78 commit c9e45e4Copy full SHA for c9e45e4
tests/ui/crashes/ice-6250.stderr
@@ -25,10 +25,12 @@ error[E0308]: mismatched types
25
--> $DIR/ice-6250.rs:12:14
26
|
27
LL | Some(reference) = cache.data.get(key) {
28
- | ^^^^^^^^^
29
- | |
30
- | expected integer, found `&i32`
31
- | help: consider dereferencing the borrow: `*reference`
+ | ^^^^^^^^^ expected integer, found `&i32`
+ |
+help: consider dereferencing the borrow
32
+LL | Some(*reference) = cache.data.get(key) {
33
+ | ^
34
35
error[E0308]: mismatched types
36
--> $DIR/ice-6250.rs:12:9
0 commit comments