source: trunk/essentials/sys-apps/gawk/test/uninit4.awk

Last change on this file was 3076, checked in by bird, 18 years ago

gawk 3.1.5

File size: 144 bytes
Line 
1# test whether --lint catches uninitialized fields:
2function pr()
3{
4 print
5}
6
7BEGIN {
8 pr()
9 print $0
10 print $(1-1)
11 print $1
12 NF=3; print $2
13}
Note: See TracBrowser for help on using the repository browser.