summary refs log tree commit diff stats
path: root/tests/ccgbugs/tweakopenarray.nim
blob: 51d7813319d3bf3b2178ebd1bd4bb277af4d2feb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# bug #4089

type
  Proc = proc(args: openArray[Bar]): Bar

  Foo = object
    p: Proc

  Bar = object
    f: Foo

proc bar(val: Foo): Bar = Bar()