summary refs log tree commit diff stats
path: root/tests/enum/toverloadedname.nim
blob: d11b0fb831a1898ab6a0f98c73e2b2f9c9b9123d (plain) (blame)
1
2
3
4
5
6
7
block: # issue #23998
  type
    Enum {.pure.} = enum
      a
    Obj = object
      a: Enum
  proc test(a: Enum) = discard Obj(a: a)