``` nimrod template something(blah: string, extraStuff: int, b: stmt): stmt = block: var something = (proc (): bool = b result = false) template test(blah: string, b: stmt): stmt = something(blah, 675, b) when isMainModule: test "blah": echo("sahda") ``` The following code fails with: ``` templateintemplate.nim(12, 6) Info: instantiation from here templateintemplate.nim(13, 4) Error: invalid expression: ' echo("sahda")' ```