about summary refs log tree commit diff
path: root/tests/ui/mem_replace.fixed
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/mem_replace.fixed')
-rw-r--r--tests/ui/mem_replace.fixed18
1 files changed, 17 insertions, 1 deletions
diff --git a/tests/ui/mem_replace.fixed b/tests/ui/mem_replace.fixed
index b609ba65946..ae237395b95 100644
--- a/tests/ui/mem_replace.fixed
+++ b/tests/ui/mem_replace.fixed
@@ -1,5 +1,7 @@
 // run-rustfix
-#![allow(unused_imports)]
+
+#![feature(custom_inner_attributes)]
+#![allow(unused)]
 #![warn(
     clippy::all,
     clippy::style,
@@ -77,3 +79,17 @@ fn main() {
     replace_with_default();
     dont_lint_primitive();
 }
+
+fn msrv_1_39() {
+    #![clippy::msrv = "1.39"]
+
+    let mut s = String::from("foo");
+    let _ = std::mem::replace(&mut s, String::default());
+}
+
+fn msrv_1_40() {
+    #![clippy::msrv = "1.40"]
+
+    let mut s = String::from("foo");
+    let _ = std::mem::take(&mut s);
+}