xref: /illumos-gate/usr/src/test/util-tests/tests/awk/gnu/strcat1.awk (revision a61ed2ce7a86a4d6428f2a83eb4739fae945447e)
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