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

13
ase/test/awk/err-011.awk Normal file
View File

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