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

16 lines
280 B
TypeScript

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