TypeScript/tests/baselines/reference/functionOverloads5.errors.txt
2014-07-12 17:30:19 -07:00

8 lines
221 B
Plaintext

==== tests/cases/compiler/functionOverloads5.ts (1 errors) ====
class baz {
public foo();
~~~
!!! Overload signatures must all be public or private.
private foo(bar?:any){ }
}