*** empty log message ***

This commit is contained in:
2006-12-05 11:34:20 +00:00
parent 9147dd9e29
commit 7b5eddbc8d
11 changed files with 118 additions and 0 deletions

23
ase/test/awk/crash08.awk Normal file
View File

@ -0,0 +1,23 @@
function a()
{
print "aaaa";
a();
}
BEGIN {
a = (b = 20);
print a; print b; for(i=j=1; i< 10; i++) print i, j;
a += b += 20;
print a; print b; for(i=j=1; i< 10; i++) print i, j;
j = (a < 20)? k = 20: c = 30;
print (a < 20)? k = 20: c = 30;
print "j=" j;
print "k=" k;
print "c=" c;
a();
}