From 77353b8084922c4a79b63109382185cbe182ca54 Mon Sep 17 00:00:00 2001 From: Araq Date: Wed, 12 Nov 2014 02:56:02 +0100 Subject: [PATCH] fixes #1127 --- compiler/ccgtypes.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 =