TypeScript/tests/baselines/reference/moduleRedifinitionErrors.types

9 lines
112 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/moduleRedifinitionErrors.ts ===
class A {
>A : A
2014-08-15 23:33:16 +02:00
}
module A {
>A : typeof A
2014-08-15 23:33:16 +02:00
}