blob: 5cec0fea1d861e812671e922b5431348b9338970 [file] [log] [blame]
// 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(_) {
$ERROR("`Base.prototype.constructor` is unreachable.");
}
};
class C extends Base {}
new C();