Files
Nim/tests/ccgbugs/tweakopenarray.nim
Andreas Rumpf 4d56b7da5a fixes #4089
2016-04-19 12:10:48 +02:00

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()