TypeScript/tests/baselines/reference/moduleRedifinitionErrors.types

9 lines
298 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/moduleRedifinitionErrors.ts ===
class A {
2015-04-13 23:01:57 +02:00
>A : A, Symbol(A, Decl(moduleRedifinitionErrors.ts, 0, 0), Decl(moduleRedifinitionErrors.ts, 1, 1))
2014-08-15 23:33:16 +02:00
}
module A {
2015-04-13 23:01:57 +02:00
>A : typeof A, Symbol(A, Decl(moduleRedifinitionErrors.ts, 0, 0), Decl(moduleRedifinitionErrors.ts, 1, 1))
2014-08-15 23:33:16 +02:00
}