TypeScript/tests/baselines/reference/testContainerList.js

21 lines
354 B
TypeScript
Raw Normal View History

2014-08-02 00:24:02 +02:00
//// [testContainerList.ts]
// Regression test for #325
module A {
class C {
constructor(public d: {}) { }
}
}
//// [testContainerList.js]
2014-08-14 15:53:37 +02:00
// Regression test for #325
2014-08-02 00:24:02 +02:00
var A;
(function (A) {
var C = (function () {
function C(d) {
this.d = d;
}
return C;
})();
})(A || (A = {}));