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, 15 insertions, 0 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
new file mode 100644
index 000000000..e80db5372
--- /dev/null
+++ b/src/test/ui/parser/where-clauses-no-bounds-or-predicates.rs
@@ -0,0 +1,15 @@
+// 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() {
+}