diff --git a/compiler/ccgtypes.nim b/compiler/ccgtypes.nim index fbdea7e66b..c3905f3e62 100644 --- a/compiler/ccgtypes.nim +++ b/compiler/ccgtypes.nim @@ -330,7 +330,7 @@ proc getSimpleTypeDesc(m: BModule, typ: PType): PRope = of tyNil: result = typeNameOrLiteral(typ, "0") of tyInt..tyUInt64: result = typeNameOrLiteral(typ, NumericalTypeToStr[typ.kind]) - of tyRange: result = getSimpleTypeDesc(m, typ.sons[0]) + of tyDistinct, tyRange: result = getSimpleTypeDesc(m, typ.sons[0]) else: result = nil proc getTypePre(m: BModule, typ: PType): PRope =