The engine crashes with the following error:
"panic: runtime error: invalid memory address or nil pointer dereference"
Reporducer:
Main template
{{block body()}}
{{include "include.jet"}}
{{end}}
include.jet
{{block inputField(label)}}
{{label}}
{{end}}
the problem seems to be that the label doesn't have default value... If {{block inputField(label)}} is changed to {{block inputField(label="foo")}} then there is no crash