xref: /illumos-gate/usr/src/test/util-tests/tests/awk/syn/gsubasgn.awk (revision dbdc225a81ccef01e9d416169099b09ddbc06ea1)
1# tests for assigning to a function within that function
2
3#1 - should be bad
4function test1 (r) { gsub(r, "x", test1) }
5BEGIN { test1("") }
6
7#2 - should be bad
8function test2 () { gsub(/a/, "x", test2) }
9BEGIN { test2() }
10
11#3 - should be ok
12function test3 (r) { gsub(/a/, "x", r) }
13BEGIN { test3("") }
14