Files
Nim/tests/errmsgs/t6608.nim
2021-04-06 16:20:01 +02:00

16 lines
277 B
Nim

discard """
cmd: "nim c --hints:off $file"
errormsg: "type mismatch: got <>"
nimout: '''t6608.nim(13, 4) Error: type mismatch: got <>
but expected one of:
AcceptCB = proc (s: string){.closure.}'''
"""
type
AcceptCB = proc (s: string)
proc x(x: AcceptCB) =
x()
x()