about summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorSamuel Tardieu <sam@rfc1149.net>2023-02-14 14:50:08 +0100
committerSamuel Tardieu <sam@rfc1149.net>2023-02-14 15:37:48 +0100
commite4e5924b99b30c693bc87aa95ef51fd2263b6280 (patch)
tree7cb29fe6c77a769fedf6e7b7ed295e3cd4fb930d /tests
parent63562a6854f1ec95f5e53936b5cec65a58aca1da (diff)
downloadrust-e4e5924b99b30c693bc87aa95ef51fd2263b6280.tar.gz
rust-e4e5924b99b30c693bc87aa95ef51fd2263b6280.zip
Do not base map_entry lint suggestion on expanded code
Diffstat (limited to 'tests')
-rw-r--r--tests/ui/entry.fixed14
-rw-r--r--tests/ui/entry.rs14
2 files changed, 28 insertions, 0 deletions
diff --git a/tests/ui/entry.fixed b/tests/ui/entry.fixed
index 79c29c04e05..dbe09e0ff3c 100644
--- a/tests/ui/entry.fixed
+++ b/tests/ui/entry.fixed
@@ -152,4 +152,18 @@ fn hash_map<K: Eq + Hash + Copy, V: Copy>(m: &mut HashMap<K, V>, m2: &mut HashMa
     });
 }
 
+// Issue 10331
+// do not suggest a bad expansion because the compiler unrolls the first
+// occurrence of the loop
+pub fn issue_10331() {
+    let mut m = HashMap::new();
+    let mut i = 0;
+    let mut x = 0;
+    while !m.contains_key(&x) {
+        m.insert(x, i);
+        i += 1;
+        x += 1;
+    }
+}
+
 fn main() {}
diff --git a/tests/ui/entry.rs b/tests/ui/entry.rs
index 2d7985457d8..30fed34fc5d 100644
--- a/tests/ui/entry.rs
+++ b/tests/ui/entry.rs
@@ -156,4 +156,18 @@ fn hash_map<K: Eq + Hash + Copy, V: Copy>(m: &mut HashMap<K, V>, m2: &mut HashMa
     }
 }
 
+// Issue 10331
+// do not suggest a bad expansion because the compiler unrolls the first
+// occurrence of the loop
+pub fn issue_10331() {
+    let mut m = HashMap::new();
+    let mut i = 0;
+    let mut x = 0;
+    while !m.contains_key(&x) {
+        m.insert(x, i);
+        i += 1;
+        x += 1;
+    }
+}
+
 fn main() {}