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

12 lines
410 B
Plaintext
Raw Normal View History

tests/cases/compiler/invokingNonGenericMethodWithTypeArguments1.ts(3,14): error TS2339: Property 'foo' does not exist on type 'Foo'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/invokingNonGenericMethodWithTypeArguments1.ts (1 errors) ====
class Foo {
constructor() {
this.foo<string>();
~~~
!!! error TS2339: Property 'foo' does not exist on type 'Foo'.
2014-07-13 01:04:16 +02:00
}
}