summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/where-clauses-no-bounds-or-predicates.rs
blob: e80db5372b609437863c499592b15a8de48c67a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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() {
}