blob: c68ab2cdc2c05b9ed64a46778131383aad09d38d [file] [log] [blame]
function assert(a, e) {
if (a !== e)
throw new Error("Expected: " + e + " but got: " + a);
}
class C {
#m = () => 25;
method() {
return this.#m();
}
}
let c = new C();
assert(c.method(), 25);