*** empty log message ***
This commit is contained in:
4
ase/test/awk/err-007.awk
Normal file
4
ase/test/awk/err-007.awk
Normal file
@ -0,0 +1,4 @@
|
||||
|
||||
function substr ()
|
||||
{
|
||||
}
|
6
ase/test/awk/err-008.awk
Normal file
6
ase/test/awk/err-008.awk
Normal file
@ -0,0 +1,6 @@
|
||||
|
||||
BEGIN {
|
||||
local substr;
|
||||
substr = 20;
|
||||
}
|
||||
|
19
ase/test/awk/err-009.awk
Normal file
19
ase/test/awk/err-009.awk
Normal 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
15
ase/test/awk/err-010.awk
Normal 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
13
ase/test/awk/err-011.awk
Normal 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
14
ase/test/awk/err-012.awk
Normal 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
3
ase/test/awk/err-013.awk
Normal file
@ -0,0 +1,3 @@
|
||||
func abc (abc)
|
||||
{
|
||||
}
|
Reference in New Issue
Block a user