rust/src/test/run-pass/uniq-cc.rs
2012-03-26 18:35:18 -07:00

25 lines
301 B
Rust

enum maybe_pointy {
none,
p(@pointy),
}
type pointy = {
mut a : maybe_pointy,
c : ~int,
d : fn~()->(),
};
fn empty_pointy() -> @pointy {
ret @{
mut a : none,
c : ~22,
d : fn~()->(){},
}
}
fn main()
{
let v = empty_pointy();
v.a = p(v);
}