*** empty log message ***

This commit is contained in:
2007-03-04 06:27:15 +00:00
parent a460e95750
commit b9931446a4
14 changed files with 236 additions and 144 deletions

14
ase/test/awk/err-012.awk Normal file
View File

@ -0,0 +1,14 @@
func abc ()
{
local j ;
j = 20;
print j;
abc ();
}
global abc;
BEGIN {
abc ();
}