TypeScript/tests/baselines/reference/invokingNonGenericMethodWithTypeArguments2.js
2014-07-12 17:30:19 -07:00

18 lines
303 B
TypeScript

//// [invokingNonGenericMethodWithTypeArguments2.ts]
class Foo {
private foo: any;
constructor() {
this.foo<string>();
}
}
//// [invokingNonGenericMethodWithTypeArguments2.js]
var Foo = (function () {
function Foo() {
this.foo();
}
return Foo;
})();