summary refs log tree commit diff stats
path: root/tests/enum/tenum_duplicate.nim
blob: 4bcad7f6f2ac1c378aeedae9360f5302d9bde095 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
discard """
  errormsg: "duplicate value in enum 'd'"
"""

type
  unordered_enum = enum
    a = 1
    b = 0
    c
    d = 2