mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 18:02:05 +00:00
16 lines
159 B
Nim
16 lines
159 B
Nim
discard """
|
|
line: 13
|
|
errormsg: "duplicate case label"
|
|
"""
|
|
|
|
type
|
|
TE = enum A, B, C, D
|
|
|
|
var
|
|
e: TE
|
|
|
|
case e
|
|
of A..D, B..C:
|
|
echo "redundant"
|
|
else: nil
|