1 2 3 4 5 6 7 8 9 10
class kitten { let cat: option<cat>; new(cat: option<cat>) { self.cat = cat; } } type cat = @kitten; fn main() {}