TypeScript/tests/baselines/reference/parserStrictMode14.errors.txt
2014-09-12 13:35:07 -07:00

15 lines
792 B
Plaintext

tests/cases/conformance/parser/ecmascript5/StrictMode/parserStrictMode14.ts(2,1): error TS1101: 'with' statements are not allowed in strict mode.
tests/cases/conformance/parser/ecmascript5/StrictMode/parserStrictMode14.ts(2,7): error TS2304: Cannot find name 'a'.
tests/cases/conformance/parser/ecmascript5/StrictMode/parserStrictMode14.ts(2,7): error TS2410: All symbols within a 'with' block will be resolved to 'any'.
==== tests/cases/conformance/parser/ecmascript5/StrictMode/parserStrictMode14.ts (3 errors) ====
"use strict";
with (a) {
~~~~
!!! error TS1101: 'with' statements are not allowed in strict mode.
~
!!! error TS2304: Cannot find name 'a'.
~
!!! error TS2410: All symbols within a 'with' block will be resolved to 'any'.
}