~vcs-imports/gawk/master

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
}