mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-19 14:00:35 +00:00
Implicit return working for async proc (#20933)
* Implicit return working for asyncdispatch proc Closes #11558 * Test case * Test that return value is actually used * Update tests/async/t11558.nim Co-authored-by: Andreas Rumpf <rumpf_a@web.de>
This commit is contained in:
13
tests/async/t11558.nim
Normal file
13
tests/async/t11558.nim
Normal file
@@ -0,0 +1,13 @@
|
||||
discard """
|
||||
output: "Hello\n9"
|
||||
"""
|
||||
import std/asyncdispatch
|
||||
|
||||
proc foo(): Future[string] {.async.} =
|
||||
"Hello"
|
||||
|
||||
proc bar(): Future[int] {.async.} =
|
||||
result = 9
|
||||
|
||||
echo waitFor foo()
|
||||
echo waitFor bar()
|
||||
Reference in New Issue
Block a user