ubuntu-buildroot/output/build/host-gawk-5.2.0/test/indirectcall3.awk

17 lines
246 B
Awk
Raw Normal View History

2024-04-01 15:19:46 +00:00
function okay(f1, f2, arg)
{
return @f1(arg)
}
function not_so_hot(f1, f2, arg)
{
return @f1(arg, @f2(arg)) # line 8: error here
}
function workaround(f1, f2, arg,
tmp)
{
tmp = @f2(arg)
return @f1(arg, tmp)
}