mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 930327 - Add test.
This commit is contained in:
parent
55412888c2
commit
92dd04f4f6
12
js/src/jit-test/tests/ion/bug930327.js
Normal file
12
js/src/jit-test/tests/ion/bug930327.js
Normal file
@ -0,0 +1,12 @@
|
||||
// |jit-test| error: ReferenceError
|
||||
|
||||
function MyObject( value ) {
|
||||
this.value = value;
|
||||
value &= value;
|
||||
}
|
||||
ForIn_1(new MyObject(true));
|
||||
function ForIn_1( object) {
|
||||
for ( property in object ) {
|
||||
object[property] == eval(property)
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user