Wed, 31 Dec 2014 06:55:50 +0100
Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2
1 var obj = {a: 0, b: 0, c: 0, d: 0, get e() { throw StopIteration; }};
2 try {
3 for each (x in obj) {}
4 FAIL;
5 } catch (exc) {
6 assertEq(exc, StopIteration);
7 }