1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/jit-test/tests/basic/bug647695.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,15 @@ 1.4 +try { let(x = Date(7), y = let(a = x)("")) {} } catch (e) {} 1.5 + 1.6 +try { 1.7 +with({ 1.8 + y: Float64Array 1.9 +}) 1.10 +for each(let y in [y]) {} 1.11 +} catch (e) {} 1.12 + 1.13 +try { test(); } catch (e) {} 1.14 +function test() { 1.15 + try { 1.16 + var result, arguments = 'adddb', arguments; 1.17 + } catch (ex) {} 1.18 +}