thooks.nim 214 B

12345678910111213141516
  1. discard """
  2. matrix: "--warningAsError:Effect"
  3. """
  4. import std/isolation
  5. # bug #23129
  6. type
  7. Thing = object
  8. x: string
  9. proc send(x: string) =
  10. let wrapper = Thing(x: x)
  11. discard isolate(wrapper)
  12. send("la")