12 lines
179 B
Rust
12 lines
179 B
Rust
struct T(i32);
|
|
|
|
impl PartialEq<i32> for T {
|
|
fn eq(&self, other: &i32) -> bool {
|
|
&self.0 == other
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
4i32 == T(4); //~ mismatched types [E0308]
|
|
}
|