~vcs-imports/gawk/master

34 by Arnold D. Robbins
Move to gawk-3.1.6.
1
# lintold.awk --- test --lint-old
2
3
BEGIN {
4
	a[1] = 1
5
	for (i in a)
6
	  print a[i]
7
	delete a[1]
8
	if (2 in a)
9
	  a[2] **= 2;
10
	if ((2,3) in a)
35 by Arnold D. Robbins
Move to gawk-3.1.7.
11
	  a[2,3] ^= 2 ** 3 ^ 5;
34 by Arnold D. Robbins
Move to gawk-3.1.6.
12
}
13
BEGIN {
14
	FS = "ab"
15
	foo = "\b\f\r"
16
}
17
END {
18
}
19
END {
20
        print "done"
21
}