xref: /illumos-gate/usr/src/test/util-tests/tests/awk/gnu/concat2.awk (revision 45ede40b2394db7967e59f19288fae9b62efd4aa)
1function f(s, x) {
2	x = 1
3	s = 3
4	s = s x
5	print s
6}
7
8BEGIN { for (i = 1; i <=12; i++) f() }
9