source:
trunk/essentials/sys-apps/gawk/test/uninit4.awk
Last change on this file was 3076, checked in by , 18 years ago | |
---|---|
File size: 144 bytes |
Line | |
---|---|
1 | # test whether --lint catches uninitialized fields: |
2 | function pr() |
3 | { |
4 | |
5 | } |
6 | |
7 | BEGIN { |
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.