michael@0: // |jit-test| error: ReferenceError michael@0: michael@0: function MyObject( value ) { michael@0: this.value = value; michael@0: value &= value; michael@0: } michael@0: ForIn_1(new MyObject(true)); michael@0: function ForIn_1( object) { michael@0: for ( property in object ) { michael@0: object[property] == eval(property) michael@0: } michael@0: }