summary refs log tree commit diff stats
path: root/tests/enum/tenum.nim
blob: b081212e64609cc7f2ac2ba44541e1eb5153c172 (plain) (blame)
1
2
3
4
5
6
7
8
# Test enums

type
  E = enum a, b, c, x, y, z

var
  en: E
en = a