You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is not a bug AFAIK. https://nim-lang.org/docs/manual.html#types-set-type says that the basetype of set can only be - int8-int16, uint8/byte-uint16, char, enum whereas typedesc can be any other type as well, and is therefore not an ordinal type.
But yeah, the other cases like
proc p[T](): set[T] = discard
discard p[float]() # replace float by any other unsupported type in set
The text was updated successfully, but these errors were encountered: