mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +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)
|