tests/cases/conformance/es6/variableDeclarations/VariableDeclaration13_es6.ts(4,5): error TS1181: Array element destructuring pattern expected.
tests/cases/conformance/es6/variableDeclarations/VariableDeclaration13_es6.ts(4,6): error TS1005: ',' expected.
tests/cases/conformance/es6/variableDeclarations/VariableDeclaration13_es6.ts(4,8): error TS1134: Variable declaration expected.
tests/cases/conformance/es6/variableDeclarations/VariableDeclaration13_es6.ts(4,10): error TS1134: Variable declaration expected.


==== tests/cases/conformance/es6/variableDeclarations/VariableDeclaration13_es6.ts (4 errors) ====
    // An ExpressionStatement cannot start with the two token sequence `let [` because
    // that would make it ambiguous with a `let` LexicalDeclaration whose first LexicalBinding was an ArrayBindingPattern.
    var let: any;
    let[0] = 100;
        ~
!!! error TS1181: Array element destructuring pattern expected.
         ~
!!! error TS1005: ',' expected.
           ~
!!! error TS1134: Variable declaration expected.
             ~~~
!!! error TS1134: Variable declaration expected.