TypeScript/tests/baselines/reference/parserStrictMode15-negative.errors.txt

11 lines
515 B
Plaintext
Raw Normal View History

tests/cases/conformance/parser/ecmascript5/StrictMode/parserStrictMode15-negative.ts(2,8): error TS2304: Cannot find name 'a'.
tests/cases/conformance/parser/ecmascript5/StrictMode/parserStrictMode15-negative.ts(2,10): error TS2304: Cannot find name 'b'.
2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/parser/ecmascript5/StrictMode/parserStrictMode15-negative.ts (2 errors) ====
"use strict";
delete a[b];
~
!!! error TS2304: Cannot find name 'a'.
2014-07-13 01:04:16 +02:00
~
!!! error TS2304: Cannot find name 'b'.