TypeScript/tests/baselines/reference/invokingNonGenericMethodWithTypeArguments1.errors.txt
2014-09-12 13:35:07 -07:00

12 lines
410 B
Plaintext

tests/cases/compiler/invokingNonGenericMethodWithTypeArguments1.ts(3,14): error TS2339: Property 'foo' does not exist on type 'Foo'.
==== tests/cases/compiler/invokingNonGenericMethodWithTypeArguments1.ts (1 errors) ====
class Foo {
constructor() {
this.foo<string>();
~~~
!!! error TS2339: Property 'foo' does not exist on type 'Foo'.
}
}