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

11 lines
324 B
Plaintext

==== tests/cases/compiler/invokingNonGenericMethodWithTypeArguments2.ts (1 errors) ====
class Foo {
private foo: any;
constructor() {
this.foo<string>();
~~~~~~~~~~~~~~~~~~
!!! error TS2347: Untyped function calls may not accept type arguments.
}
}