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

14 lines
477 B
Plaintext
Raw Normal View History

tests/cases/compiler/semicolonsInModuleDeclarations.ts(2,27): error TS1036: Statements are not allowed in ambient contexts.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/semicolonsInModuleDeclarations.ts (1 errors) ====
declare module ambiModule {
export interface i1 { };
~
!!! error TS1036: Statements are not allowed in ambient contexts.
2014-07-13 01:04:16 +02:00
export interface i2 { }
}
var n1: ambiModule.i1;
var n2: ambiModule.i2;