blob: 838563b6baccf06bf47341e3d645bdbd8bd2017f [file] [log] [blame]
abstract class A<T> {
const factory A() = B;
}
abstract class B<T> implements A<T> {
const factory B() = C;
}
class C<T> implements B<T> {
const factory C() = B;
}
test() {}
main() {}