TypeScript/tests/baselines/reference/emptyGenericParamList.js

12 lines
176 B
TypeScript

//// [emptyGenericParamList.ts]
class I<T> {}
var x: I<>;
//// [emptyGenericParamList.js]
var I = (function () {
function I() {
}
return I;
})();
var x;