blob: 8246ad5f2db517f3deb206f494c26331c693f4ee [file] [log] [blame]
enum E1 { one(1), two.named(2); final int foo; const E1(this.foo); const E1.named(int value) : this(value); }
enum E2 { one(1), two.named(2); final int foo; const E2(this.foo); const E2.named(int value) : this(value, value); }
main() {}