summaryrefslogtreecommitdiff
path: root/test/lintlength.awk
blob: ad21791223c8106a3266e58b570fcdcfc87faaac (plain)
1
2
3
4
5
6
BEGIN {
	x = 5
	z =  length(x)	# should issue a warning
	y = (x "")	# trigger STRCUR
	z = length(x)	# should still issue a warning
}