mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
12 lines
141 B
Nim
12 lines
141 B
Nim
discard """
|
|
errormsg: "type mismatch"
|
|
file: "tenummix.nim"
|
|
line: 11
|
|
"""
|
|
|
|
type
|
|
TE1 = enum eA, eB
|
|
TE2 = enum eC, eD
|
|
|
|
assert eA != eC
|