mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 15:32:06 +00:00
17 lines
194 B
Rust
17 lines
194 B
Rust
// run-pass
|
|
#![allow(dead_code)]
|
|
|
|
enum E { V, VV(isize) }
|
|
static C: E = E::V;
|
|
|
|
fn f(a: &E) {
|
|
match *a {
|
|
E::V => {}
|
|
E::VV(..) => panic!()
|
|
}
|
|
}
|
|
|
|
pub fn main() {
|
|
f(&C)
|
|
}
|