summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/class/derivedConstructorTDZExplicitThis.js
blob: 4a4922d57e6d6ae6f724ae5701f1a1a46c938c1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class foo extends null {
    constructor() {
        this;
        assertEq(false, true);
    }
}

for (let i = 0; i < 1100; i++)
    assertThrownErrorContains(() => new foo(), "this");

if (typeof reportCompare === 'function')
    reportCompare(0,0,"OK");