summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/fields/bug1664550.js
blob: 57c08365940c6a3b5782ce6bbc6d854f3affcff4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class OverrideBase {
  constructor(o30) {
    return o30;
  }
};

class A3 extends OverrideBase {
  get #m() {}
}

var obj = {};
Object.seal(obj);
new A3(obj);