js/src/jit-test/tests/basic/bug614688.js

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:c59e81fbff38
1 function Foo() {
2 u = 0;
3 }
4
5 var x = new Foo();
6 assertEq(Object.getPrototypeOf(x) === Foo.prototype, true);
7 assertEq(Object.getPrototypeOf(x) === Object.prototype, false);

mercurial