about summary refs log tree commit diff
path: root/src/test/ui/rfcs/rfc-2005-default-binding-mode/tuple-struct.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/rfcs/rfc-2005-default-binding-mode/tuple-struct.rs')
-rw-r--r--src/test/ui/rfcs/rfc-2005-default-binding-mode/tuple-struct.rs19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/test/ui/rfcs/rfc-2005-default-binding-mode/tuple-struct.rs b/src/test/ui/rfcs/rfc-2005-default-binding-mode/tuple-struct.rs
deleted file mode 100644
index 0cf9ba1b4ca..00000000000
--- a/src/test/ui/rfcs/rfc-2005-default-binding-mode/tuple-struct.rs
+++ /dev/null
@@ -1,19 +0,0 @@
-// run-pass
-#![allow(dead_code)]
-enum Foo {
-    Bar(Option<i8>, (), (), Vec<i32>),
-    Baz,
-}
-
-pub fn main() {
-    let foo = Foo::Bar(Some(1), (), (), vec![2, 3]);
-
-    match &foo {
-        Foo::Baz => panic!(),
-        Foo::Bar(None, ..) => panic!(),
-        Foo::Bar(Some(n), .., v) => {
-            assert_eq!((*v).len(), 2);
-            assert_eq!(*n, 1);
-        }
-    }
-}