TypeScript/tests/baselines/reference/testContainerList.types
2015-04-15 16:44:20 -07:00

14 lines
194 B
Plaintext

=== tests/cases/compiler/testContainerList.ts ===
// Regression test for #325
module A {
>A : typeof A
class C {
>C : C
constructor(public d: {}) { }
>d : {}
}
}