blob: a9e8caddf67ebd0e127f535c167e5846e53475f6 [file] [log] [blame]
description(
"Tests what happens when you use a function as a variable."
);
function run_tests() {
function x() {
return 3;
}
var x = 13;
return x + x;
}
for(var i=0; i<100; ++i)
shouldBe("run_tests()", "26");