blob: 7cdb5cdb9ff3d61a79a6ad466cfa9a61e8892071 [file] [log] [blame]
class A {
A.foo() {}
A() {}
factory A.bar() => new A();
}
testFoo() => A.foo;
testNew() => A.new;
testBar() => A.bar;
testFooExtraArgs() => A<int>.foo;
testNewExtraArgs() => A<int>.new;
testBarExtraArgs() => A<int>.bar;
main() {}