mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-12 22:33:49 +00:00
16 lines
225 B
Nim
16 lines
225 B
Nim
discard """
|
|
errormsg: "case statement cannot work on enums with holes for computed goto"
|
|
line: 13
|
|
"""
|
|
|
|
type
|
|
X = enum
|
|
A = 0, B = 100
|
|
|
|
var z = A
|
|
while true:
|
|
{.computedGoto.}
|
|
case z
|
|
of A: discard
|
|
of B: discard
|