summary refs log tree commit diff stats
path: root/lib/std/time_t.nim
Commit message (Collapse)AuthorAgeFilesLines
* Revert export of times.CTime; add std/time_t instead. (#10319)Oscar NihlgÄrd2019-01-161-0/+23
* Revert export of times.CTime * Add std/time_t
a id='n15' href='#n15'>15














                             
discard """
  targets: "cpp"
  matrix: "--gc:orc"
"""

import std/options

# bug #18410
type
  O = object of RootObj
   val: pointer

proc p(): Option[O] = none(O)

doAssert $p() == "none(O)"