blob: 3e8ba944cf7bef72753402add43e3d4841ad5c93 [file] [log] [blame]
description(
"Tests effect of mutating Arguments object's structure."
);
function foo() {
arguments.a=true;
return arguments.a;
}
dfgShouldBe(foo, "foo()", "true");