summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/where-clauses-no-bounds-or-predicates.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/parser/where-clauses-no-bounds-or-predicates.rs')
-rw-r--r--src/test/ui/parser/where-clauses-no-bounds-or-predicates.rs15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/test/ui/parser/where-clauses-no-bounds-or-predicates.rs b/src/test/ui/parser/where-clauses-no-bounds-or-predicates.rs
deleted file mode 100644
index e80db5372..000000000
--- a/src/test/ui/parser/where-clauses-no-bounds-or-predicates.rs
+++ /dev/null
@@ -1,15 +0,0 @@
-// Empty predicate list is OK
-fn equal1<T>(_: &T, _: &T) -> bool where {
- true
-}
-
-// Empty bound list is OK
-fn equal2<T>(_: &T, _: &T) -> bool where T: {
- true
-}
-
-fn foo<'a>() where 'a {}
-//~^ ERROR expected `:`, found `{`
-
-fn main() {
-}