blob: ec53c69be49b0d65b5538a13ff86611e261a639b [file] [log] [blame]
// @dart = 2.9
library redirecting_factory_constructors.typeparambounds_test;
class A<T, S extends T> {
A(T t, S s);
factory A.redir(T t, S s) = A<T, S>;
}
class X {}
class Y extends X {}
main() {}