Files
Nim/tests/pragmas/t6448.nim
Arne Döring 2f557652d4 fix operators containing percent for VM usage (#13536)
* fixes #13513
* merge tarithmetics in tarithm
2020-03-11 01:01:25 +01:00

18 lines
227 B
Nim

discard """
errormsg: '''ambiguous call'''
line: 10
disabled: "32bit"
"""
import foobar
import asyncdispatch, macros
proc bar() {.async.} =
echo 42
proc foo() {.async.} =
await bar()
asyncCheck foo()
runForever()