TypeScript/tests/baselines/reference/classWithOverloadImplementationOfWrongName.errors.txt
2014-09-11 16:11:08 -07:00

8 lines
259 B
Plaintext

==== tests/cases/compiler/classWithOverloadImplementationOfWrongName.ts (1 errors) ====
class C {
foo(): string;
foo(x): number;
bar(x): any { }
~~~
!!! error TS2389: Function implementation name must be 'foo'.
}