This compiles:
template test: bool = true if not test: echo "wtf" Run
template test: bool = true if not test: echo "wtf"
This doesn't:
template test: bool = true template x = if not test: # got template(): bool, expected bool echo "wtf" x Run
template test: bool = true template x = if not test: # got template(): bool, expected bool echo "wtf" x
Should this work or not?