summary refs log tree commit diff stats
path: root/tests/enum/mcrossmodule.nim
blob: e534a202c2ca453eb0701717b8e0e3e42582d3cf (plain) (blame)
1
2
3
4
5
6
type
  OtherEnum* = enum
    Success, Failed, More

proc some*(x: OtherEnum): bool = x == Success