blob: c123edd66628fac53b5580f94ea1f1939d3f5297 [file] [log] [blame]
function test() {
return (function(a=function(){
return typeof b === 'undefined';
}){
var b = 1;
return a();
}());
}
if (!test())
throw new Error("Test failed");