summaryrefslogtreecommitdiff
path: root/test/language/expressions/assignment/11.13.1-4-27-s.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/language/expressions/assignment/11.13.1-4-27-s.js')
-rw-r--r--test/language/expressions/assignment/11.13.1-4-27-s.js28
1 files changed, 28 insertions, 0 deletions
diff --git a/test/language/expressions/assignment/11.13.1-4-27-s.js b/test/language/expressions/assignment/11.13.1-4-27-s.js
new file mode 100644
index 000000000..5ce719261
--- /dev/null
+++ b/test/language/expressions/assignment/11.13.1-4-27-s.js
@@ -0,0 +1,28 @@
+// Copyright (c) 2012 Ecma International. All rights reserved.
+// Ecma International makes this code available under the terms and conditions set
+// forth on http://hg.ecmascript.org/tests/test262/raw-file/tip/LICENSE (the
+// "Use Terms"). Any redistribution of this code must retain the above
+// copyright and this notice and otherwise comply with the Use Terms.
+
+/*---
+es5id: 11.13.1-4-27-s
+description: >
+ simple assignment throws TypeError if LeftHandSide is a readonly
+ property in strict mode (Global.undefined)
+includes:
+ - runTestCase.js
+ - fnGlobalObject.js
+---*/
+
+function testcase() {
+ 'use strict';
+
+ try {
+ fnGlobalObject().undefined = 42;
+ return false;
+ }
+ catch (e) {
+ return (e instanceof TypeError);
+ }
+ }
+runTestCase(testcase);