t6448.nim 227 B

123456789101112131415161718
  1. discard """
  2. errormsg: '''ambiguous call'''
  3. line: 10
  4. disabled: "32bit"
  5. """
  6. import foobar
  7. import asyncdispatch, macros
  8. proc bar() {.async.} =
  9. echo 42
  10. proc foo() {.async.} =
  11. await bar()
  12. asyncCheck foo()
  13. runForever()