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

9 lines
323 B
Plaintext

==== tests/cases/compiler/externSemantics.ts (2 errors) ====
declare var x=10;
~
!!! error TS1039: Initializers are not allowed in ambient contexts.
declare var v;
declare var y:number=3;
~
!!! error TS1039: Initializers are not allowed in ambient contexts.