summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/directive-prologue/14.1-5gs.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/language/directive-prologue/14.1-5gs.js')
-rw-r--r--js/src/tests/test262/language/directive-prologue/14.1-5gs.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/js/src/tests/test262/language/directive-prologue/14.1-5gs.js b/js/src/tests/test262/language/directive-prologue/14.1-5gs.js
new file mode 100644
index 0000000000..e1f2977e7a
--- /dev/null
+++ b/js/src/tests/test262/language/directive-prologue/14.1-5gs.js
@@ -0,0 +1,19 @@
+// Copyright (c) 2012 Ecma International. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+es5id: 14.1-5gs
+description: >
+ StrictMode - a Use Strict Directive embedded in a directive
+ prologue followed by a strict mode violation
+negative:
+ phase: parse
+ type: SyntaxError
+flags: [raw]
+---*/
+
+"a";
+"use strict";
+"c";
+throw "Test262: This statement should not be evaluated.";
+eval = 42;