blob: 1fa7cfe87cfe5ee2615bfcb0369ee9b4d473b2e6 [file] [log] [blame]
// @dart = 2.9
class A {
A.foo() : this.bar();
A.bar() : this.foo();
A.baz() : this.foo();
A() : this();
}
main() {}