1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/jit-test/tests/auto-regress/bug697255.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,12 @@ 1.4 +// Binary: cache/js-dbg-32-6cd262091470-linux 1.5 +// Flags: -j 1.6 +// 1.7 +a = evalcx("lazy"); 1.8 +b = {} 1.9 +b.__proto__ = a 1.10 +a.__proto__ = String 1.11 +for (var a = 0; a < 50; a++) { 1.12 + try { 1.13 + b + "" 1.14 + } catch (e) {} 1.15 +}