mirror of
https://github.com/nim-lang/Nim.git
synced 2026-05-01 11:34:43 +00:00
Fix regression w/ templates defined in async proc
This commit is contained in:
11
tests/async/ttemplateinasync.nim
Normal file
11
tests/async/ttemplateinasync.nim
Normal file
@@ -0,0 +1,11 @@
|
||||
discard """
|
||||
output: 42
|
||||
"""
|
||||
|
||||
import asyncdispatch
|
||||
|
||||
proc foo(): Future[int] {.async.} =
|
||||
template ret() = return 42
|
||||
ret()
|
||||
|
||||
echo (waitFor foo())
|
||||
Reference in New Issue
Block a user