TypeScript/tests/baselines/reference/mergedDeclarations2.errors.txt
2014-09-11 16:11:08 -07:00

13 lines
260 B
Plaintext

==== tests/cases/compiler/mergedDeclarations2.ts (1 errors) ====
enum Foo {
b
}
enum Foo {
a = b
}
module Foo {
export var x = b
~
!!! error TS2304: Cannot find name 'b'.
}