summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/bug1894604.js
blob: 5c14789eef3011981954457ffabd1f75678b56aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class C {
  set f(val) {
    this.f = val;
    super.g++;
  }
}

let c = new C();
gczeal(14,50);
try {
  c.f = 1;
} catch {}