summary refs log tree commit diff stats
path: root/tests/generics/t8439.nim
blob: 69bd7cfcb8f77abfd7dbb34eaf8661d39a5d6500 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
discard """
  output: "1"
"""

type
  Cardinal = enum
    north, east, south, west

proc foo[cardinal: static[Cardinal]](): int = 1
echo(foo[north]())