1 2 3 4 5 6 7 8 9 10
class C { #x() { } constructor() { this.#x = 1; } } try { new C } catch (e) { assertEq(e.message, "cannot assign to private method"); }