blob: 44e29aba5630720647701a89209d665d58a55b6e [file] [log] [blame]
// @dart = 2.9
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() {}