mirror of
https://github.com/nim-lang/Nim.git
synced 2026-08-02 21:49:02 +00:00
10 lines
130 B
Nim
10 lines
130 B
Nim
discard """
|
|
errormsg: "cannot infer the return type of 'foo'"
|
|
line: 6
|
|
"""
|
|
|
|
proc foo[T](x: T): auto =
|
|
foo(x)
|
|
|
|
discard foo(1)
|