TypeScript/tests/baselines/reference/testContainerList.js
2014-08-14 06:53:37 -07:00

21 lines
354 B
TypeScript

//// [testContainerList.ts]
// Regression test for #325
module A {
class C {
constructor(public d: {}) { }
}
}
//// [testContainerList.js]
// Regression test for #325
var A;
(function (A) {
var C = (function () {
function C(d) {
this.d = d;
}
return C;
})();
})(A || (A = {}));