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