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

9 lines
258 B
Text
Raw Normal View History

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