blob: 9eb6e4a4aceed2bc86713161c533dc20f13f1e2f [file] [log] [blame]
<#macro m1 a b=a>
${a} ${b}
</#macro>
<@m1 a="1"/>
<#macro m2 a=b b="">
${a} ${b}
</#macro>
<@m2 b="2"/>
<#macro m3 d b=c[a] a=d c={"3":"4"}>
${b}
</#macro>
<@m3 d="3"/>
<#attempt>
<@m3 d="4"/>
<#recover>
m3 with d="4" Failed!
</#attempt>