TypeScript/tests/baselines/reference/externSemantics.errors.txt
2014-07-12 17:30:19 -07:00

9 lines
295 B
Plaintext

==== 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.