blob: a1e883f4ae3d3129d09f5108951ff3a2e5206c40 [file] [log] [blame]
// @dart = 2.9
library redirecting_factory_constructors.simple_test;
class A {
A();
factory A.redir() = A;
}
main() {}