mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
15 lines
191 B
Nim
15 lines
191 B
Nim
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)" |