summaryrefslogtreecommitdiffstats
path: root/tests/ui/where-clauses/where-clauses-unsatisfied.rs
blob: 8b067d30a2a851ae1e0a31a56b41f580b2e4233f (plain)
1
2
3
4
5
6
7
8
fn equal<T>(a: &T, b: &T) -> bool where T : Eq { a == b }

struct Struct;

fn main() {
    drop(equal(&Struct, &Struct))
    //~^ ERROR the trait bound `Struct: Eq` is not satisfied
}