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 --- src/test/ui/suggestions/for-i-in-vec.fixed | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 src/test/ui/suggestions/for-i-in-vec.fixed (limited to 'src/test/ui/suggestions/for-i-in-vec.fixed') diff --git a/src/test/ui/suggestions/for-i-in-vec.fixed b/src/test/ui/suggestions/for-i-in-vec.fixed deleted file mode 100644 index 4f2007bef..000000000 --- a/src/test/ui/suggestions/for-i-in-vec.fixed +++ /dev/null @@ -1,27 +0,0 @@ -// run-rustfix -#![allow(dead_code)] - -struct Foo { - v: Vec, - h: std::collections::HashMap, -} - -impl Foo { - fn bar(&self) { - for _ in &self.v { //~ ERROR cannot move out of `self.v` which is behind a shared reference - } - for _ in &self.h { //~ ERROR cannot move out of `self.h` which is behind a shared reference - } - } -} - -const LOADERS: &Vec<&'static u8> = &Vec::new(); - -pub fn break_code() -> Option<&'static u8> { - for loader in &*LOADERS { //~ ERROR cannot move out of a shared reference - return Some(loader); - } - None -} - -fn main() {} -- cgit v1.2.3