Files
Nim/tests/async/tgeneric_async.nim
Andreas Rumpf 1d186ee9c3 fixes #2377
2016-07-08 18:08:34 +02:00

10 lines
120 B
Nim

import asyncdispatch
when true:
# bug #2377
proc test[T](v: T) {.async.} =
echo $v
asyncCheck test[int](1)