Files
Kmake/deps/v8/test/mjsunit/regress/regress-crbug-1408310.js
2026-05-26 23:36:42 -07:00

24 lines
494 B
JavaScript

// Copyright 2023 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Flags: --always-turbofan
Object.defineProperty(Object.prototype, "test", {});
class Base {
constructor() {
return new Proxy(this, {
defineProperty(target, key) {
return true;
}
});
}
}
let key = "test";
class Child extends Base {
[key] = "basic";
}
let c = new Child();
c = new Child();