rust/src/test/run-pass/regions-self-in-enums.rs
2012-08-06 15:36:30 -07:00

15 lines
219 B
Rust

enum int_wrapper {
int_wrapper_ctor(&int)
}
fn main() {
let x = 3;
let y = int_wrapper_ctor(&x);
let mut z : ∫
match y {
int_wrapper_ctor(zz) => { z = zz; }
}
log(debug, *z);
}