mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
20 lines
336 B
Nim
20 lines
336 B
Nim
discard """
|
|
errormsg: "type mismatch"
|
|
file: "tnot.nim"
|
|
line: 14
|
|
"""
|
|
# BUG: following compiles, but should not:
|
|
|
|
proc nodeOfDegree(x: int): bool =
|
|
result = false
|
|
|
|
proc main =
|
|
for j in 0..2:
|
|
for i in 0..10:
|
|
if not nodeOfDegree(1) >= 0: #ERROR_MSG type mismatch
|
|
echo "Yes"
|
|
else:
|
|
echo "No"
|
|
|
|
main()
|