summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/class/class-static-02.js
blob: e096ec86d18ca0fa238b7983b82be64c3520aaa8 (plain)
1
2
3
4
5
6
7
8
9
10
// |jit-test| 

Reflect.parse(`class A {
  static { print('hi'); }
}`)

Reflect.parse(`class A {
  static x = 10;
  static { this.x++ }
}`);