summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/bounds-type.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/parser/bounds-type.rs')
-rw-r--r--src/test/ui/parser/bounds-type.rs18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/test/ui/parser/bounds-type.rs b/src/test/ui/parser/bounds-type.rs
deleted file mode 100644
index 4ae4549ea..000000000
--- a/src/test/ui/parser/bounds-type.rs
+++ /dev/null
@@ -1,18 +0,0 @@
-// compile-flags: -Z parse-only
-
-struct S<
- T: 'a + Tr, // OK
- T: Tr + 'a, // OK
- T: 'a, // OK
- T:, // OK
- T: ?for<'a> Trait, // OK
- T: Tr +, // OK
- T: ?'a, //~ ERROR `?` may only modify trait bounds, not lifetime bounds
-
- T: ~const Tr, // OK
- T: ~const ?Tr, // OK
- T: ~const Tr + 'a, // OK
- T: ~const 'a, //~ ERROR `~const` may only modify trait bounds, not lifetime bounds
->;
-
-fn main() {}