diff --git a/test/language/expressions/delete/identifier-strict-recursive.js b/test/language/expressions/delete/identifier-strict-recursive.js new file mode 100644 index 0000000000..d4021cdd77 --- /dev/null +++ b/test/language/expressions/delete/identifier-strict-recursive.js @@ -0,0 +1,17 @@ +// Copyright (c) 2018 Mike Pennisi. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +esid: sec-delete-operator-static-semantics-early-errors +description: Parsing error when operand is an IdentifierReference +info: | + It is a Syntax Error if the UnaryExpression is contained in strict mode code + and the derived UnaryExpression is PrimaryExpression:IdentifierReference. +negative: + phase: parse + type: SyntaxError +flags: [onlyStrict] +---*/ + +$DONOTEVALUATE(); + +delete ((identifier));