t6448.nim 225 B

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