TypeScript/tests/baselines/reference/declarationInAmbientContext.errors.txt
2014-12-02 16:23:37 -08:00

12 lines
No EOL
821 B
Text

tests/cases/conformance/es6/destructuring/declarationInAmbientContext.ts(1,13): error TS1166: Destructuring declarations are not allowed in ambient contexts.
tests/cases/conformance/es6/destructuring/declarationInAmbientContext.ts(2,13): error TS1166: Destructuring declarations are not allowed in ambient contexts.
==== tests/cases/conformance/es6/destructuring/declarationInAmbientContext.ts (2 errors) ====
declare var [a, b]; // Error, destructuring declaration not allowed in ambient context
~~~~~~
!!! error TS1166: Destructuring declarations are not allowed in ambient contexts.
declare var {c, d}; // Error, destructuring declaration not allowed in ambient context
~~~~~~
!!! error TS1166: Destructuring declarations are not allowed in ambient contexts.