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

19
ase/test/awk/err-009.awk Normal file
View File

@ -0,0 +1,19 @@
func abc ()
{
local x;
print x = 20;
{
local abc;
abc = 30;
print abc;
abc ();
}
}
BEGIN {
abc ();
}