summary refs log tree commit diff stats
path: root/tests/concepts/t7952.nim
blob: 96ff47e4a7faff1b43b65cec71231c5a995a0722 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
discard """
  output: 5
"""

type
  HasLen = concept iter
    len(iter) is int

proc echoLen(x: HasLen) =
  echo len(x)

echoLen([1, 2, 3, 4, 5])