mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 11:50:45 +00:00
13 lines
193 B
Rust
13 lines
193 B
Rust
enum Terminator {
|
|
HastaLaVistaBaby,
|
|
TalkToMyHand,
|
|
}
|
|
|
|
fn main() {
|
|
let x = Terminator::HastaLaVistaBaby;
|
|
|
|
match x { //~ ERROR E0004
|
|
Terminator::TalkToMyHand => {}
|
|
}
|
|
}
|