TypeScript/tests/baselines/reference/testContainerList.types

14 lines
194 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/testContainerList.ts ===
// Regression test for #325
module A {
>A : typeof A
2014-08-15 23:33:16 +02:00
class C {
>C : C
2014-08-15 23:33:16 +02:00
constructor(public d: {}) { }
>d : {}
2014-08-15 23:33:16 +02:00
}
}