summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/class/definition/prototype-setter.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/language/statements/class/definition/prototype-setter.js')
-rw-r--r--js/src/tests/test262/language/statements/class/definition/prototype-setter.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/js/src/tests/test262/language/statements/class/definition/prototype-setter.js b/js/src/tests/test262/language/statements/class/definition/prototype-setter.js
new file mode 100644
index 0000000000..f6618c5a9c
--- /dev/null
+++ b/js/src/tests/test262/language/statements/class/definition/prototype-setter.js
@@ -0,0 +1,18 @@
+// Copyright (C) 2014 the V8 project authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+es6id: 14.5
+description: >
+ class prototype setter
+---*/
+var Base = function() {}.bind();
+Object.defineProperty(Base, 'prototype', {
+ set: function() {
+ throw new Test262Error("Cannot create a setter property named `prototype`");
+ }
+});
+assert.throws(TypeError, function() {
+ class C extends Base {}
+});
+
+reportCompare(0, 0);