1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// Test that constructors that abort due to asm.js do not assert due to the // parser keeping track of the FunctionBox corresponding to the constructor. class a { constructor() { "use asm"; } } function f() { class a { constructor() { "use asm"; } } }