xref: /illumos-gate/usr/src/test/util-tests/tests/awk/syn/fnmisc.awk (revision e6d6c189fa3a95d7aa27bbe0aeacf7c1a6b57c8c)
1# Tue Feb  4 12:20:10 IST 2003
2
3# Misc functions tests, in case we start mucking around in the grammar again.
4
5# Empty body shouldn't hurt anything:
6function f() {}
7BEGIN { f() }
8
9# Using a built-in function name should manage the symbol table
10# correctly:
11function split(x) { return x }
12
13function x(a) { return a }
14