about summary refs log tree commit diff
path: root/src/test/ui/proc-macro/empty-where-clause.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/proc-macro/empty-where-clause.rs')
-rw-r--r--src/test/ui/proc-macro/empty-where-clause.rs18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/test/ui/proc-macro/empty-where-clause.rs b/src/test/ui/proc-macro/empty-where-clause.rs
deleted file mode 100644
index 719555c092a..00000000000
--- a/src/test/ui/proc-macro/empty-where-clause.rs
+++ /dev/null
@@ -1,18 +0,0 @@
-// aux-build:test-macros.rs
-
-extern crate test_macros;
-use test_macros::recollect_attr;
-
-#[recollect_attr]
-struct FieldStruct where {
-    field: MissingType1 //~ ERROR cannot find
-}
-
-#[recollect_attr]
-struct TupleStruct(MissingType2) where; //~ ERROR cannot find
-
-enum MyEnum where {
-    Variant(MissingType3) //~ ERROR cannot find
-}
-
-fn main() {}