diff options
author | flywind <43030857+xflywind@users.noreply.github.com> | 2020-11-23 00:16:42 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-22 17:16:42 +0100 |
commit | 6f1a72069a6992850813cd99d4d3aec4e595c438 (patch) | |
tree | e090f3cfde668f7ea0e4500c51dc525c9b750128 /tests/async/tfuturevar.nim | |
parent | 2841cc6e97da3822eb778b0cbd138ebd1fc5cec0 (diff) | |
download | Nim-6f1a72069a6992850813cd99d4d3aec4e595c438.tar.gz |
fix #9695 asyncmacro: tfuturevar fails when activated [backport: 1.0] (#16090)
* fix asyncmacro * Apply suggestions from code review * Update lib/pure/asyncmacro.nim
Diffstat (limited to 'tests/async/tfuturevar.nim')
-rw-r--r-- | tests/async/tfuturevar.nim | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/async/tfuturevar.nim b/tests/async/tfuturevar.nim index 9e3134261..b70f1d166 100644 --- a/tests/async/tfuturevar.nim +++ b/tests/async/tfuturevar.nim @@ -1,8 +1,3 @@ -discard """ -action: compile -""" -# XXX: action should be run! - import asyncdispatch proc completeOnReturn(fut: FutureVar[string], x: bool) {.async.} = |