blob: 036a7886eee66b915f72179fc00ef30ce13330be [file] [log] [blame]
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() {}