diff options
Diffstat (limited to 'tests/ui/parser/where-clauses-no-bounds-or-predicates.rs')
-rw-r--r-- | tests/ui/parser/where-clauses-no-bounds-or-predicates.rs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/ui/parser/where-clauses-no-bounds-or-predicates.rs b/tests/ui/parser/where-clauses-no-bounds-or-predicates.rs new file mode 100644 index 000000000..e80db5372 --- /dev/null +++ b/tests/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() { +} |