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

9 lines
295 B
Plaintext
Raw Normal View History

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