Adding test output file.

This commit is contained in:
Anders Hejlsberg
2014-08-01 15:24:02 -07:00
parent cb038467d6
commit afe3abde5b

View File

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