]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/mismatched_types/closure-arg-count-expected-type-issue-47244.stderr
Rollup merge of #89945 - JohnTitor:we-now-specialize-clone-from-slice, r=the8472
[rust.git] / src / test / ui / mismatched_types / closure-arg-count-expected-type-issue-47244.stderr
index a8da87d60bf942d145935e6ae114da7d8e682875..d7db90e50e51b11ccfa5fdc2da1bfd1b1b69afef 100644 (file)
@@ -9,7 +9,7 @@ LL |     let _n = m.iter().map(|_, b| {
 help: change the closure to accept a tuple instead of individual arguments
    |
 LL |     let _n = m.iter().map(|(_, b)| {
-   |                           ^^^^^^^^
+   |                           ~~~~~~~~
 
 error: aborting due to previous error