From 64d98f8ee037282c35007b64c2649055c56af1db Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:03 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- src/test/ui/suggestions/for-i-in-vec.rs | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 src/test/ui/suggestions/for-i-in-vec.rs (limited to 'src/test/ui/suggestions/for-i-in-vec.rs') diff --git a/src/test/ui/suggestions/for-i-in-vec.rs b/src/test/ui/suggestions/for-i-in-vec.rs deleted file mode 100644 index 55fc7ad4e..000000000 --- a/src/test/ui/suggestions/for-i-in-vec.rs +++ /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