TypeScript/tests/baselines/reference/emptyGenericParamList.js
2015-12-08 17:51:10 -08:00

12 lines
176 B
TypeScript

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