diff options
-rw-r--r-- | compiler/lookups.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/lookups.nim b/compiler/lookups.nim index 926458080..51b453ca4 100644 --- a/compiler/lookups.nim +++ b/compiler/lookups.nim @@ -257,7 +257,7 @@ proc errorUseQualifier*(c: PContext; info: TLineInfo; s: PSym) = while candidate != nil: if i == 0: err.add " --use one of the following:\n" else: err.add "\n" - err.add typeToString(candidate.typ) + err.add candidate.owner.name.s & "." & typeToString(candidate.typ) candidate = nextIdentIter(ti, c.importTable.symbols) inc i localError(c.config, info, errGenerated, err) |