blob: 5c8f788f7e4e9854aad62791bc73c76792d922f6 [file] [log] [blame]
ggaren@apple.com961dc372015-09-04 02:39:20 +00001function test() {
2
3return (function({a=function(){
4 return typeof b === 'undefined';
5}}){
6 var b = 1;
7 return a();
8}({}));
9
10}
11
12if (!test())
13 throw new Error("Test failed");
14