mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-12 22:33:49 +00:00
fix #8925 by using getTypeInst instead of getType
This commit is contained in:
@@ -317,8 +317,8 @@ macro scanf*(input: string; pattern: static[string]; results: varargs[typed]): b
|
||||
|
||||
template at(s: string; i: int): char = (if i < s.len: s[i] else: '\0')
|
||||
template matchError() =
|
||||
error("type mismatch between pattern '$" & pattern[p] & "' (position: " & $p & ") and " & repr(getType(results[i])) &
|
||||
" var '" & repr(results[i]) & "'")
|
||||
error("type mismatch between pattern '$" & pattern[p] & "' (position: " & $p &
|
||||
") and " & $getTypeInst(results[i]) & " var '" & repr(results[i]) & "'")
|
||||
|
||||
var i = 0
|
||||
var p = 0
|
||||
|
||||
Reference in New Issue
Block a user