mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
15 lines
340 B
Rust
15 lines
340 B
Rust
// run-pass
|
|
#![allow(dead_code)]
|
|
#![allow(non_camel_case_types)]
|
|
|
|
pub fn main() {
|
|
#[derive(Copy, Clone)]
|
|
enum x { foo }
|
|
impl ::std::cmp::PartialEq for x {
|
|
fn eq(&self, other: &x) -> bool {
|
|
(*self) as isize == (*other) as isize
|
|
}
|
|
fn ne(&self, other: &x) -> bool { !(*self).eq(other) }
|
|
}
|
|
}
|