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