This compiles:
    
    
    template test: bool = true
    
    if not test:
      echo "wtf"
    
    
    Run

This doesn't:
    
    
    template test: bool = true
    
    template x =
      if not test: # got template(): bool, expected bool
        echo "wtf"
    
    x
    
    
    Run

Should this work or not?

Reply via email to