summaryrefslogtreecommitdiff
path: root/tests/genie/function-returns-closure.gs
blob: 27742c96362ede3a7477008518e163e66a56900b (plain)
1
2
3
4
5
6
7
8
delegate TestFunction():bool

init
	assert( test()() == true )

def test():TestFunction
	return def()
		return true