about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJules Bertholet <julesbertholet@quoi.xyz>2024-04-14 13:33:11 -0400
committerJules Bertholet <julesbertholet@quoi.xyz>2024-04-15 23:27:22 -0400
commit7a3211726bb101ab0c0138b2dcff44a175ff74c4 (patch)
treee2e12a073a0edb85f5830c732bcee11f0ce30ad8
parent1b6d435cf3e94548f3da6a0409c5786c4accfaa4 (diff)
downloadrust-7a3211726bb101ab0c0138b2dcff44a175ff74c4.tar.gz
rust-7a3211726bb101ab0c0138b2dcff44a175ff74c4.zip
Fix tests
-rw-r--r--tests/ui/pattern/mut_preserve_binding_mode_2021.rs1
-rw-r--r--tests/ui/pattern/mut_preserve_binding_mode_2021.stderr4
-rw-r--r--tests/ui/pattern/mut_preserve_binding_mode_2024.rs2
-rw-r--r--tests/ui/pattern/mut_preserve_binding_mode_2024_lint.rs2
4 files changed, 5 insertions, 4 deletions
diff --git a/tests/ui/pattern/mut_preserve_binding_mode_2021.rs b/tests/ui/pattern/mut_preserve_binding_mode_2021.rs
index 658ba2851cc..befa49fdc24 100644
--- a/tests/ui/pattern/mut_preserve_binding_mode_2021.rs
+++ b/tests/ui/pattern/mut_preserve_binding_mode_2021.rs
@@ -1,6 +1,7 @@
 //@ edition: 2021
 //@ compile-flags: -Zunstable-options
 #![feature(mut_preserve_binding_mode_2024)]
+#![allow(incomplete_features)]
 
 struct Foo(u8);
 
diff --git a/tests/ui/pattern/mut_preserve_binding_mode_2021.stderr b/tests/ui/pattern/mut_preserve_binding_mode_2021.stderr
index 9487aa64b4f..b800cc4a0f4 100644
--- a/tests/ui/pattern/mut_preserve_binding_mode_2021.stderr
+++ b/tests/ui/pattern/mut_preserve_binding_mode_2021.stderr
@@ -1,5 +1,5 @@
 error[E0308]: mismatched types
-  --> $DIR/mut_preserve_binding_mode_2021.rs:9:9
+  --> $DIR/mut_preserve_binding_mode_2021.rs:10:9
    |
 LL |     let Foo(mut a) = &Foo(0);
    |             ----- expected due to the type of this binding
@@ -13,7 +13,7 @@ LL +     a = 42;
    |
 
 error[E0308]: mismatched types
-  --> $DIR/mut_preserve_binding_mode_2021.rs:13:9
+  --> $DIR/mut_preserve_binding_mode_2021.rs:14:9
    |
 LL |     let Foo(mut a) = &mut Foo(0);
    |             ----- expected due to the type of this binding
diff --git a/tests/ui/pattern/mut_preserve_binding_mode_2024.rs b/tests/ui/pattern/mut_preserve_binding_mode_2024.rs
index a5d7ac9d8e6..5454962e16c 100644
--- a/tests/ui/pattern/mut_preserve_binding_mode_2024.rs
+++ b/tests/ui/pattern/mut_preserve_binding_mode_2024.rs
@@ -2,7 +2,7 @@
 //@ edition: 2024
 //@ compile-flags: -Zunstable-options
 #![feature(mut_preserve_binding_mode_2024)]
-#![allow(unused)]
+#![allow(incomplete_features, unused)]
 
 struct Foo(u8);
 
diff --git a/tests/ui/pattern/mut_preserve_binding_mode_2024_lint.rs b/tests/ui/pattern/mut_preserve_binding_mode_2024_lint.rs
index d3e3ffffcc5..249f251d2cd 100644
--- a/tests/ui/pattern/mut_preserve_binding_mode_2024_lint.rs
+++ b/tests/ui/pattern/mut_preserve_binding_mode_2024_lint.rs
@@ -1,6 +1,6 @@
 //@ edition: 2021
 #![feature(mut_preserve_binding_mode_2024)]
-#![allow(unused)]
+#![allow(incomplete_features, unused)]
 #![forbid(dereferencing_mut_binding)]
 
 struct Foo(u8);