blob: a32b5de72920afaa769ce741b03992ee5ada5ffd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// run-pass
#![allow(non_camel_case_types)]
enum clam<T> { a(T, isize), b, }
fn uhoh<T>(v: Vec<clam<T>> ) {
match v[1] {
clam::a::<T>(ref _t, ref u) => {
println!("incorrect");
println!("{}", u);
panic!();
}
clam::b::<T> => { println!("correct"); }
}
}
pub fn main() {
let v: Vec<clam<isize>> = vec![clam::b::<isize>, clam::b::<isize>, clam::a::<isize>(42, 17)];
uhoh::<isize>(v);
}
|