mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
14 lines
138 B
Nim
14 lines
138 B
Nim
discard """
|
|
action: "compile"
|
|
"""
|
|
import options, mregression
|
|
|
|
type
|
|
MyEnum = enum
|
|
Success
|
|
|
|
template t =
|
|
echo some(Success)
|
|
|
|
t()
|