xref: /illumos-gate/usr/src/test/util-tests/tests/awk/gnu/paramuninitglobal.awk (revision 6446bd46ed1b4e9f69da153665f82181ccaedad5)
1function f(x)
2{
3	a = 10
4	x = 90
5	print x
6	print a
7	a++
8	x++
9	print x
10}
11
12BEGIN {
13	f(a)
14	print a
15}
16