xref: /illumos-gate/usr/src/test/util-tests/tests/awk/syn/aryprm2.awk (revision 45ede40b2394db7967e59f19288fae9b62efd4aa)
1function f(a) {
2	delete a
3	a *= 5
4}
5
6BEGIN {
7	f(arr)
8}
9