blob: 2ec72a8d57386f1aebb374c2af82c840b0a5995b [file] [log] [blame]
// @dart = 2.9
class Supertype {
factory Supertype() = X;
factory Supertype() = X;
}
class X implements Supertype {
X();
}
main() {}