mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-02 11:12:37 +00:00
25 lines
312 B
Nim
25 lines
312 B
Nim
discard """
|
|
output: '''10'''
|
|
"""
|
|
|
|
# bug #940
|
|
|
|
type
|
|
Foo* = ref object
|
|
b*: int
|
|
|
|
proc new*(this: var Foo) =
|
|
assert this != nil
|
|
this.b = 10
|
|
|
|
proc new*(T: typedesc[Foo]): Foo =
|
|
system.new(result)
|
|
twrongopensymchoice.new(result)
|
|
|
|
proc main =
|
|
var f = Foo.new()
|
|
echo f.b
|
|
|
|
when isMainModule:
|
|
main()
|