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