blob: 371d6037fef293a9d8ab09ee3cefa572226edc29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//@ run-pass
#![allow(dead_code)]
enum E {
Foo{f: isize},
Bar,
}
pub fn main() {
let e = E::Foo{f: 0};
match e {
E::Foo{f: 1} => panic!(),
E::Foo{..} => (),
_ => panic!(),
}
}
|