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

8 lines
290 B
Text
Raw Normal View History

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