blob: 051f9f7cb1de20c90f4cd2a0bd99b71440c851e4 [file] [log] [blame]
class A {
A() : this();
A.bar() : this.foo();
A.baz() : this.foo();
A.foo() : this.bar();
}
main() {}