You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class kitten {
let cat: option<cat>;
new(cat: option<cat>) {
self.cat = cat;
}
}
type cat = @kitten;
fn main() {}
This program causes rustc to go into an infinite loop. I'd thought the infinite loop was in infer, but it seems to instead be in trans... so I'll keep looking.