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