1 description('This test makes sure stack unwinding works correctly when confronted with a 0-depth scope chain without an activation');
4 var test = "outer scope";
5 with({test:"inner scope"})
6 (function () { try { throw ""; } finally { result = test; shouldBe("result", '"inner scope"'); return;}})()
10 var successfullyParsed = true;