From cb038467d6d0f1e6f6bbf43a485bb83a5c60a4b2 Mon Sep 17 00:00:00 2001 From: Anders Hejlsberg Date: Fri, 1 Aug 2014 15:20:08 -0700 Subject: [PATCH] Adding regression test for #325 --- tests/cases/compiler/testContainerList.ts | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 tests/cases/compiler/testContainerList.ts diff --git a/tests/cases/compiler/testContainerList.ts b/tests/cases/compiler/testContainerList.ts new file mode 100644 index 00000000000..29a4fbd206c --- /dev/null +++ b/tests/cases/compiler/testContainerList.ts @@ -0,0 +1,6 @@ +// Regression test for #325 +module A { + class C { + constructor(public d: {}) { } + } +}