blob: e030fbf3c285025e9840c866927307cf8d50b08f [file] [log] [blame]
actual = '';
expected = '2,';
function k(f_arg) {
for (var i = 0; i < 100; ++i) {
f_arg();
}
}
function t() {
var x = 1;
k(function () { x = 2; });
appendToActual(x);
}
t();
assertEq(actual, expected)