rust/src/test/run-pass/uniq-cc.rs
2012-08-01 19:16:06 -07:00

25 lines
304 B
Rust

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