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

11 lines
537 B
Plaintext
Raw Normal View History

2015-04-17 01:25:54 +02:00
tests/cases/conformance/es6/destructuring/objectBindingPatternKeywordIdentifiers04.ts(2,16): error TS1003: Identifier expected.
2015-04-17 01:41:11 +02:00
tests/cases/conformance/es6/destructuring/objectBindingPatternKeywordIdentifiers04.ts(2,22): error TS1005: ':' expected.
2015-04-17 01:25:54 +02:00
2015-04-17 01:41:11 +02:00
==== tests/cases/conformance/es6/destructuring/objectBindingPatternKeywordIdentifiers04.ts (2 errors) ====
2015-04-17 01:25:54 +02:00
var { "while": while } = { while: 1 }
~~~~~
2015-04-17 01:41:11 +02:00
!!! error TS1003: Identifier expected.
~
!!! error TS1005: ':' expected.