summaryrefslogtreecommitdiff
path: root/usr/src/test/util-tests/tests/awk/syn/delfunc.awk
blob: 365a76ba977fb72869e5e56b1dbf4fab8e1ba6c5 (plain)
1
2
3
4
5
6
7
# from Stepan Kasal, 9 July 2003
function f()
{
	delete f
}

BEGIN { f() }