blob: 750add3980e22f51ee9f43c9224226dce057d787 [file] [log] [blame]
what = 0;
function f(x) {
g(x);
}
function g(x) {
eval("what = true");
}
f(10);
assertEq(what, true);