xref: /illumos-gate/usr/src/test/util-tests/tests/awk/syn/callparam.awk (revision 4c87aefe8930bd07275b8dd2e96ea5f24d93a52e)
1BEGIN { f() }
2
3function f(	a, b)
4{
5	a = b()
6}
7