blob: 2b322b9996f9e90c418709b80b797584b67f2159 [file] [log] [blame]
function f2()
{
return 1;
}
function f1()
{
var x = 1;
return x + f2();
}