// 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);