aboutsummaryrefslogtreecommitdiffstats
path: root/test/uninit4.awk
blob: 89de732270f1e171cfc85e7a2113979a4d58e75e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# test whether --lint catches uninitialized fields:
function pr()
{
	print
}

BEGIN {
	pr()
	print $0
	print $(1-1)
	print $1
	NF=3; print $2
}