summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/global-code/yield-strict-strict.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/language/global-code/yield-strict-strict.js')
-rw-r--r--js/src/tests/test262/language/global-code/yield-strict-strict.js27
1 files changed, 27 insertions, 0 deletions
diff --git a/js/src/tests/test262/language/global-code/yield-strict-strict.js b/js/src/tests/test262/language/global-code/yield-strict-strict.js
new file mode 100644
index 0000000000..33b260bced
--- /dev/null
+++ b/js/src/tests/test262/language/global-code/yield-strict-strict.js
@@ -0,0 +1,27 @@
+// |reftest| error:SyntaxError
+'use strict';
+// Copyright (C) 2016 the V8 project authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+esid: sec-scripts
+es6id: 15.1
+description: >
+ The `yield` token is interpreted as an Identifier when it appears in global
+ code (strict mode)
+info: |
+ Syntax
+
+ Script :
+ ScriptBodyopt
+
+ ScriptBody :
+ StatementList[~Yield, ~Return]
+flags: [onlyStrict]
+negative:
+ phase: parse
+ type: SyntaxError
+---*/
+
+$DONOTEVALUATE();
+
+yield;