blob: e132ef668b017fddda8eb0f2ee37262624936ad2 [file] [log] [blame]
function test() {
// Note: only available outside of strict mode.
if (!this) return false;
label: function foo() { return 2; }
return foo() === 2;
}
if (!test())
throw new Error("Test failed");