blob: 090f17f2fe2f4080f46ca6cc07861424332bb4ec [file] [log] [blame]
struct T(i32);
impl PartialEq<i32> for T {
fn eq(&self, other: &i32) -> bool {
&self.0 == other
}
}
fn main() {
4i32 == T(4); //~ ERROR mismatched types [E0308]
}