TypeScript/tests/baselines/reference/mergedDeclarations2.errors.txt

13 lines
246 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/mergedDeclarations2.ts (1 errors) ====
enum Foo {
b
}
enum Foo {
a = b
}
module Foo {
export var x = b
~
!!! Cannot find name 'b'.
}