mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
17 lines
195 B
Nim
17 lines
195 B
Nim
# Test enum with explicit size
|
|
|
|
type
|
|
TEnumHole {.size: sizeof(int).} = enum
|
|
eA = 0,
|
|
eB = 4,
|
|
eC = 5
|
|
|
|
var
|
|
e: TEnumHole = eB
|
|
|
|
case e
|
|
of eA: echo "A"
|
|
of eB: echo "B"
|
|
of eC: echo "C"
|
|
|