blob: 82ac1d1d729e0c8ef77e4d0b0899995011ba5d9e [file] [log] [blame]
class A<T> {
factory A() = B;
}
class B<T> implements A<T> {
B();
}
main() {}