mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 18:02:05 +00:00
14 lines
174 B
Nim
14 lines
174 B
Nim
discard """
|
|
errormsg: "cannot evaluate at compile time: x"
|
|
line: 7
|
|
"""
|
|
|
|
proc bla(x:int) =
|
|
when x == 0:
|
|
echo "oops"
|
|
else:
|
|
echo "good"
|
|
|
|
bla(2) # echos "oops"
|
|
|