TypeScript/tests/cases/compiler/invokingNonGenericMethodWithTypeArguments2.ts
2014-07-12 17:30:19 -07:00

8 lines
98 B
TypeScript

class Foo {
private foo: any;
constructor() {
this.foo<string>();
}
}