blob: aa6d1a691b1cf245baecfe55f824ca86bc338c47 [file] [log] [blame]
// @dart = 2.9
library test;
abstract class C {}
abstract class D<T> {
D(T t);
}
void test() {}
main() {}