diff options
Diffstat (limited to 'contrib/awk/test/arrayref.awk')
| -rw-r--r-- | contrib/awk/test/arrayref.awk | 13 | 
1 files changed, 0 insertions, 13 deletions
diff --git a/contrib/awk/test/arrayref.awk b/contrib/awk/test/arrayref.awk deleted file mode 100644 index 144d41a06872..000000000000 --- a/contrib/awk/test/arrayref.awk +++ /dev/null @@ -1,13 +0,0 @@ -	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 -	}  | 
