summaryrefslogtreecommitdiffstats
path: root/contrib/awk/test/arrayref.awk
blob: 144d41a06872ce656776b8e7c8f00479d8fa91f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
	BEGIN { # foo[10] = 0		# put this line in and it will work
		test(foo); print foo[1]
		test2(foo2); print foo2[1]
	}

	function test(foo)
	{
		test2(foo)
	}
	function test2(bar)
	{
		bar[1] = 1
	}
OpenPOWER on IntegriCloud