summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/fields/bug1683784.js
blob: 02dd277cfb586eab0fd818f47834ae7885373be0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// |jit-test| --enable-private-methods;

class C {
    #x() { }
    constructor() { this.#x = 1; }
}

try {
    new C
} catch (e) {
    assertEq(e.message, "#x is read-only")
}