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

13 lines
551 B
Plaintext
Raw Normal View History

tests/cases/compiler/externSemantics.ts(1,14): error TS1039: Initializers are not allowed in ambient contexts.
tests/cases/compiler/externSemantics.ts(3,21): error TS1039: Initializers are not allowed in ambient contexts.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/externSemantics.ts (2 errors) ====
declare var x=10;
~
!!! error TS1039: Initializers are not allowed in ambient contexts.
2014-07-13 01:04:16 +02:00
declare var v;
declare var y:number=3;
~
!!! error TS1039: Initializers are not allowed in ambient contexts.
2014-07-13 01:04:16 +02:00