Blame test/fnmisc.awk

Packit 575503
# Tue Feb  4 12:20:10 IST 2003
Packit 575503
Packit 575503
# Misc functions tests, in case we start mucking around in the grammar again.
Packit 575503
Packit 575503
# Empty body shouldn't hurt anything:
Packit 575503
function f() {}
Packit 575503
BEGIN { f() }
Packit 575503
Packit 575503
# Using a built-in function name should manage the symbol table
Packit 575503
# correctly:
Packit 575503
function split(x) { return x }
Packit 575503
Packit 575503
function x(a) { return a }