blob: e242e0f2e0aa4a41b2144ef06873ca4f85f33dc0 [file] [log] [blame]
##
## tests a difficult introspection problem -
## the iterator is a private inner class
##
#set($array = [1..10])
#set($it = $array.iterator())
#foreach($num in [21..30])
$num $it.next()
#end