Typical template dotexpr issue can probably be resolved by doing the following. 
The issue stems from `a.b` in a template not being a call so it does not force 
bind symbols.

`const ri = static: rev32b(0xFF'u32)`

the following also may work, do not recall if it will.
    
    
    template crcBitwise*(data: string): uint32 =
      mixin rev32b
      const ri = static: 0xFF'u32.rev32b
    
    
    Run

Reply via email to