]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/crashes/ice-6250.stderr
Auto merge of #8030 - WaffleLapkin:ignore_trait_assoc_types_type_complexity, r=llogiq
[rust.git] / tests / ui / crashes / ice-6250.stderr
index c38727316cd4e8dff0d860c058609953eb1e42da..0d7713aa9a2780794fcc118a02af3f50b18276ec 100644 (file)
@@ -24,11 +24,16 @@ LL | | }
 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: `*reference`
+   |              ^^^^^^^^^ 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