Sign in
webkit
/
WebKit
/
49c45f529348e27f11122daecbee33e4fa730919
/
.
/
JSTests
/
stress
/
delete-inlining-should-model-aliasing-of-future-stores.js
blob: 2ef86ea54aac9a4c2c17575c01ce655aa010bb50 [
file
] [
log
] [
blame
]
// This should not crash.
function
foo
()
{
const
o
=
{
y
:
0
};
delete
o
.
y
;
o
.
z
=
0
;
Object
.
assign
({},
o
);
}
noInline
(
foo
);
for
(
let i
=
0
;
i
<
100000
;
i
++)
{
foo
();
}