mention -d:nimLegacyConvEnumEnum in error msg (#17928)

This commit is contained in:
Timothee Cour
2021-05-03 14:06:15 -07:00
committed by GitHub
parent 8ce69d5841
commit 01f316cf1f

View File

@@ -1525,6 +1525,8 @@ proc typeMismatch*(conf: ConfigRef; info: TLineInfo, formal, actual: PType, n: P
msg.add "\n.tag effect is 'any tag allowed'"
of efLockLevelsDiffer:
msg.add "\nlock levels differ"
if formal.kind == tyEnum and actual.kind == tyEnum:
msg.add "\nmaybe use `-d:nimLegacyConvEnumEnum` for a transition period"
localError(conf, info, msg)
proc isTupleRecursive(t: PType, cycleDetector: var IntSet): bool =