summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/bounds-lifetime-where.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/parser/bounds-lifetime-where.rs')
-rw-r--r--src/test/ui/parser/bounds-lifetime-where.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/test/ui/parser/bounds-lifetime-where.rs b/src/test/ui/parser/bounds-lifetime-where.rs
deleted file mode 100644
index 7ff75233d..000000000
--- a/src/test/ui/parser/bounds-lifetime-where.rs
+++ /dev/null
@@ -1,10 +0,0 @@
-type A where 'a: 'b + 'c = u8; // OK
-type A where 'a: 'b, = u8; // OK
-type A where 'a: = u8; // OK
-type A where 'a:, = u8; // OK
-type A where 'a: 'b + 'c = u8; // OK
-type A where = u8; // OK
-type A where 'a: 'b + = u8; // OK
-type A where , = u8; //~ ERROR expected one of `;`, `=`, `where`, lifetime, or type, found `,`
-
-fn main() {}