xref: /illumos-gate/usr/src/test/util-tests/tests/awk/gnu/strcat1.awk (revision 45ede40b2394db7967e59f19288fae9b62efd4aa)
1
2function f1(b) { b = b "c"; print f(b); }
3
4function f(a) { a = a "b"; return a; }
5
6BEGIN { A = "a"; f1(A); }
7