blob: 031417628a99dd3579458e86172e515f3eb0a078 [file] [log] [blame]
#macro(arrayError)
#set($foo = [])
$foo.get(2)
#end
#macro(nullMethod)
#set($foo = $NULL)
$foo.bar
#end
#macro(badRef)
$bar
#end
#macro(forloop)
#set($val = 1)
#foreach($i in $val)
#end
#end