aboutsummaryrefslogtreecommitdiffstats
path: root/test/lintwarn.awk
blob: d430a2b4203f321d4f13a8b145ff330b0f0246a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# gawk --lint -f lintwarn.awk
BEGINFILE {
	getline var
	getline
}

BEGIN {
        PROCINFO["sorted_in"]
	print
	nextfile
	delete a
	delete(a)
	y = /a/
	y == /a/
	/b/ ~ x
	length
	switch(s) {
	case 1:
	default:
	case 1:
	default:
	}
	break
	continue
	next
	a[]
	f(/pqr/)
	//
	/* */
}
END {
	getline
}
function zz(aa, aa)
{
	return aa
}
@include ""
BEGIN {
	print "foo" > "foo" 1	# should warn
	print "foo" > ("foo" 1)	# should not warn
	system("rm -f foo1 foo2")
}