Skip to content

Commit

Permalink
handle concepts
Browse files Browse the repository at this point in the history
  • Loading branch information
jmgomez committed Jan 27, 2024
1 parent 15f1c9c commit fddc7ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/ccgutils.nim
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ proc encodeType*(m: BModule; t: PType): string =
var kindName = ($t.kind)[2..^1]
kindName[0] = toLower($kindName[0])[0]
case t.kind:
of tyObject, tyEnum, tyDistinct:
of tyObject, tyEnum, tyDistinct, tyUserTypeClass:
encodeSym(m, t.sym)
of tyGenericInst:
let s = t[0].sym
Expand Down

0 comments on commit fddc7ca

Please sign in to comment.