blob: e04255c57148ce5c8346e5837c2bd6e4e60ede77 [file] [log] [blame]
library redirecting_factory_constructors.typeparam_test;
class A<T, S> {
A(T t, S s);
factory A.redir(T t, S s) = A<T, S>;
}
main() {}