*** 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

15
ase/test/awk/err-010.awk Normal file
View File

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