mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
15 lines
169 B
Nim
15 lines
169 B
Nim
discard """
|
|
output: '''123
|
|
abc'''
|
|
"""
|
|
|
|
# bug #4856
|
|
|
|
import asyncdispatch
|
|
|
|
proc say[T](t: T): Future[void] {.async.} =
|
|
echo $t
|
|
|
|
waitFor(say(123))
|
|
waitFor(say("abc"))
|