torc.nim 191 B

123456789101112131415
  1. discard """
  2. targets: "cpp"
  3. matrix: "--gc:orc"
  4. """
  5. import std/options
  6. # bug #18410
  7. type
  8. O = object of RootObj
  9. val: pointer
  10. proc p(): Option[O] = none(O)
  11. doAssert $p() == "none(O)"