mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-06-10 18:04:18 -05:00
Adding test output file.
This commit is contained in:
19
tests/baselines/reference/testContainerList.js
Normal file
19
tests/baselines/reference/testContainerList.js
Normal 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 = {}));
|
||||
Reference in New Issue
Block a user