mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 09:54:49 +00:00
19 lines
250 B
Nim
19 lines
250 B
Nim
discard """
|
|
line: 13
|
|
errormsg: "duplicate case label"
|
|
"""
|
|
|
|
|
|
|
|
|
|
proc checkDuplicates(myval: int32): bool =
|
|
case myval
|
|
of 0x7B:
|
|
echo "this should not compile"
|
|
of 0x78 .. 0x7D:
|
|
result = true
|
|
else:
|
|
nil
|
|
|
|
echo checkDuplicates(0x7B)
|