summary refs log tree commit diff stats
path: root/tests/enum/tenum_self.nim
blob: 27b1c32040a9e4f130e50de97172e57b471204da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
discard """
  errormsg: "1 can't be converted to ErrorFoo"
"""


type
  Foo = enum
    Bar = 0.Foo

  ErrorFoo = enum
    eBar = 1.ErrorFoo