mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
14 lines
206 B
Rust
14 lines
206 B
Rust
// run-pass
|
|
#![allow(dead_code)]
|
|
#[derive(PartialEq, Debug)]
|
|
enum S {
|
|
X { x: isize, y: isize },
|
|
Y
|
|
}
|
|
|
|
pub fn main() {
|
|
let x = S::X { x: 1, y: 2 };
|
|
assert_eq!(x, x);
|
|
assert!(!(x != x));
|
|
}
|