summary refs log tree commit diff stats
path: root/tests/typerel/t8905.nim
blob: 9383962cf660ee1cb5454f379f444f16b6a640a3 (plain) (blame)
1
2
3
4
5
6
7
type
  Foo[T] = distinct seq[T]
  Bar[T] = object

proc newFoo[T](): Foo[T] = Foo[T](newSeq[T]())

var x = newFoo[Bar[int]]()