~vcs-imports/gawk/master

« back to all changes in this revision

Viewing changes to test/lintwarn.awk

Update README.solaris.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
        break
24
24
        continue
25
25
        next
26
 
        a
 
26
        a[]
27
27
        f(/pqr/)
28
28
        //
29
29
        /* */
36
36
        return aa
37
37
}
38
38
@include ""
39
 
BEGIN {
40
 
        print "foo" > "foo" 1   # should warn
41
 
        print "foo" > ("foo" 1) # should not warn
42
 
        system("rm -f foo1 foo2")
43
 
}