TypeScript/tests/baselines/reference/overloadResolutionOnDefaultConstructor1.errors.txt

8 lines
276 B
Plaintext

==== tests/cases/compiler/overloadResolutionOnDefaultConstructor1.ts (1 errors) ====
class Bar {
public clone() {
return new Bar(0);
~~~~~~~~~~
!!! Supplied parameters do not match any signature of call target.
}
}