summaryrefslogtreecommitdiffstats
path: root/src/test/ui/pattern/pat-tuple-underfield.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/ui/pattern/pat-tuple-underfield.rs
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/pattern/pat-tuple-underfield.rs')
-rw-r--r--src/test/ui/pattern/pat-tuple-underfield.rs67
1 files changed, 0 insertions, 67 deletions
diff --git a/src/test/ui/pattern/pat-tuple-underfield.rs b/src/test/ui/pattern/pat-tuple-underfield.rs
deleted file mode 100644
index dac60e3fa..000000000
--- a/src/test/ui/pattern/pat-tuple-underfield.rs
+++ /dev/null
@@ -1,67 +0,0 @@
-struct S(i32, f32);
-enum E {
- S(i32, f32),
-}
-struct Point4(i32, i32, i32, i32);
-
-fn main() {
- match S(0, 1.0) {
- S(x) => {}
- //~^ ERROR this pattern has 1 field, but the corresponding tuple struct has 2 fields
- //~| HELP use `_` to explicitly ignore each field
- }
- match S(0, 1.0) {
- S(_) => {}
- //~^ ERROR this pattern has 1 field, but the corresponding tuple struct has 2 fields
- //~| HELP use `_` to explicitly ignore each field
- //~| HELP use `..` to ignore all fields
- }
- match S(0, 1.0) {
- S() => {}
- //~^ ERROR this pattern has 0 fields, but the corresponding tuple struct has 2 fields
- //~| HELP use `_` to explicitly ignore each field
- //~| HELP use `..` to ignore all fields
-
- // Test non-standard formatting
- S () => {}
- //~^ ERROR this pattern has 0 fields, but the corresponding tuple struct has 2 fields
- //~| HELP use `_` to explicitly ignore each field
- //~| HELP use `..` to ignore all fields
- }
-
- match E::S(0, 1.0) {
- E::S(x) => {}
- //~^ ERROR this pattern has 1 field, but the corresponding tuple variant has 2 fields
- //~| HELP use `_` to explicitly ignore each field
- }
- match E::S(0, 1.0) {
- E::S(_) => {}
- //~^ ERROR this pattern has 1 field, but the corresponding tuple variant has 2 fields
- //~| HELP use `_` to explicitly ignore each field
- //~| HELP use `..` to ignore all fields
- }
- match E::S(0, 1.0) {
- E::S() => {}
- //~^ ERROR this pattern has 0 fields, but the corresponding tuple variant has 2 fields
- //~| HELP use `_` to explicitly ignore each field
- //~| HELP use `..` to ignore all fields
-
- // Test non-standard formatting
- E::S () => {}
- //~^ ERROR this pattern has 0 fields, but the corresponding tuple variant has 2 fields
- //~| HELP use `_` to explicitly ignore each field
- //~| HELP use `..` to ignore all fields
- }
- match E::S(0, 1.0) {
- E::S => {}
- //~^ ERROR expected unit struct, unit variant or constant, found tuple variant `E::S`
- //~| HELP use the tuple variant pattern syntax instead
- }
-
- match Point4(0, 1, 2, 3) {
- Point4( a , _ ) => {}
- //~^ ERROR this pattern has 2 fields, but the corresponding tuple struct has 4 fields
- //~| HELP use `_` to explicitly ignore each field
- //~| HELP use `..` to ignore the rest of the fields
- }
-}