summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/class/subclass/superclass-prototype-setter-constructor.js
blob: 04f3f34ced1c0ce04a2b69d1c0bbb19d36d38d86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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: >
    superclass setter "constructor" override
---*/
function Base() {}

Base.prototype = {
  set constructor(_) {
    throw new Test262Error("`Base.prototype.constructor` is unreachable.");
  }
};

class C extends Base {}

new C();

reportCompare(0, 0);