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