*** empty log message ***

This commit is contained in:
2006-08-30 07:15:14 +00:00
parent e6dc5c7a66
commit e198b2632d
10 changed files with 125 additions and 36 deletions

View File

@@ -5,7 +5,7 @@ BEGIN {
delete NF;
print "NF[1]=", NF[1];
NF[1] = 20; // this line should not be allowed
NF[1] = 20; # this line should not be allowed
print "AWK IMPLEMENTATION ERROR: hey... NF[1] = 20 has succeeded in the BEGIN block. your interpreter must be wrong";
print "NF[1]=", NF[1];
}