summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/regress/regress-chromium-1409294.js
blob: 920b79a163393cb7e82f35b7cd613f4742c68e91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// 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

let key = 5;

class Base {
  constructor() {
    return new Proxy(this, {
      defineProperty(target, key, desc) {
        return Reflect.defineProperty(target, key, desc);
      }
    });
  }
}

class Child extends Base {
  [key] = "basic";
}
let c = new Child();
c = new Child();