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