From 218caa410aa38c29984be31a5229b9fa717560ee Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:13 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- .../suggest-mut-method-for-loop-hashmap.fixed | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 src/test/ui/suggestions/suggest-mut-method-for-loop-hashmap.fixed (limited to 'src/test/ui/suggestions/suggest-mut-method-for-loop-hashmap.fixed') diff --git a/src/test/ui/suggestions/suggest-mut-method-for-loop-hashmap.fixed b/src/test/ui/suggestions/suggest-mut-method-for-loop-hashmap.fixed deleted file mode 100644 index b69bad988..000000000 --- a/src/test/ui/suggestions/suggest-mut-method-for-loop-hashmap.fixed +++ /dev/null @@ -1,21 +0,0 @@ -// run-rustfix -// https://github.com/rust-lang/rust/issues/82081 - -use std::collections::HashMap; - -struct Test { - v: u32, -} - -fn main() { - let mut map = HashMap::new(); - map.insert("a", Test { v: 0 }); - - for (_k, mut v) in map.iter_mut() { - //~^ HELP use mutable method - //~| NOTE this iterator yields `&` references - v.v += 1; - //~^ ERROR cannot assign to `v.v` - //~| NOTE `v` is a `&` reference - } -} -- cgit v1.2.3