"Mehrdad" <[email protected]> wrote in message news:[email protected]... >> > Why isn't it a constant? o.O
It isn't a compile-time constant, it is constant. You need to use if, not static if, because code versioned out with static if does not get processed in the compiler beyond parsing. It needs to be done with a normal code branch that is always taken when in the interpreter but never taken at runtime.
