summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/xdr/private-fields.js
blob: dfea2b6a626e10206024e0dc99c583fdbdca925c (plain)
1
2
3
4
5
6
7
8
9
10
// |jit-test| --enable-private-fields;
load(libdir + 'bytecode-cache.js');

function test() {
  class A {
    #x;
  }
};

evalWithCache(test.toString(), {assertEqBytecode: true, assertEqResult: true});