blob: 79f321c2c4d401e20d19679f3d841ef732ff14ad [file] [log] [blame]
class A<X> {
A.foo() {}
A() {}
}
testFoo() => A.foo;
testFooArgs() => A<int>.foo;
testNew() => A.new;
testNewArgs() => A<int>.new;
testFooExtraArgs() => A<int, String>.foo;
testNewExtraArgs() => A<int, String>.new;
main() {}