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

4
ase/test/awk/err-007.awk Normal file
View File

@ -0,0 +1,4 @@
function substr ()
{
}

6
ase/test/awk/err-008.awk Normal file
View File

@ -0,0 +1,6 @@
BEGIN {
local substr;
substr = 20;
}

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 ();
}

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 ();
}

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 ();
}

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 ();
}

3
ase/test/awk/err-013.awk Normal file
View File

@ -0,0 +1,3 @@
func abc (abc)
{
}