mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-01 19:02:18 +00:00
10 lines
120 B
Nim
10 lines
120 B
Nim
|
|
import asyncdispatch
|
|
|
|
when true:
|
|
# bug #2377
|
|
proc test[T](v: T) {.async.} =
|
|
echo $v
|
|
|
|
asyncCheck test[int](1)
|