mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
13 lines
147 B
Nim
13 lines
147 B
Nim
# bug #4089
|
|
|
|
type
|
|
Proc = proc(args: openArray[Bar]): Bar
|
|
|
|
Foo = object
|
|
p: Proc
|
|
|
|
Bar = object
|
|
f: Foo
|
|
|
|
proc bar(val: Foo): Bar = Bar()
|