blob: 2193981d695a78293cbd36f12cb6633226d68c46 [file] [log] [blame]
// Copyright (C) 2016 Rick Waldron. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Rick Waldron
esid: sec-unary-operators
description: Exponentiation Expression syntax error, `typeof` UnaryExpression
info: |
ExponentiationExpression :
UnaryExpression
...
UnaryExpression :
...
`typeof` UnaryExpression
...
negative:
phase: parse
type: SyntaxError
---*/
$DONOTEVALUATE();
typeof 1 ** 2;