about summary refs log tree commit diff
path: root/src/test/ui/tuple/tuple-struct-fields/test.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/tuple/tuple-struct-fields/test.rs')
-rw-r--r--src/test/ui/tuple/tuple-struct-fields/test.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/test/ui/tuple/tuple-struct-fields/test.rs b/src/test/ui/tuple/tuple-struct-fields/test.rs
deleted file mode 100644
index 00677090d78..00000000000
--- a/src/test/ui/tuple/tuple-struct-fields/test.rs
+++ /dev/null
@@ -1,9 +0,0 @@
-mod foo {
-    type T = ();
-    struct S1(pub(in foo) (), pub(T), pub(crate) (), pub(((), T)));
-    struct S2(pub((foo)) ());
-    //~^ ERROR expected one of `)` or `,`, found `(`
-    //~| ERROR cannot find type `foo` in this scope
-}
-
-fn main() {}