mirror of
https://git.proxmox.com/git/rustc
synced 2025-10-19 05:59:36 +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));
|
|
}
|