summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/invalid-bin-op.rs
blob: bea1b91558646a3d48283c052ca6b5a55fefa8cb (plain)
1
2
3
4
5
6
7
pub fn foo<T>(s: S<T>, t: S<T>) {
    let _ = s == t; //~ ERROR binary operation `==` cannot be applied to type `S<T>`
}

struct S<T>(T);

fn main() {}