diff --git a/tests/baselines/reference/testContainerList.js b/tests/baselines/reference/testContainerList.js new file mode 100644 index 00000000000..d7e91a59256 --- /dev/null +++ b/tests/baselines/reference/testContainerList.js @@ -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 = {}));