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

12 lines
232 B
TypeScript

//// [genericTypeUsedWithoutTypeArguments1.ts]
interface Foo<T> { }
class Bar<T> implements Foo { }
//// [genericTypeUsedWithoutTypeArguments1.js]
var Bar = (function () {
function Bar() {
}
return Bar;
})();