Files
Nim/tests/reject/tnot.nim
2013-03-16 23:53:07 +01:00

22 lines
332 B
Nim

discard """
file: "system.nim"
errormsg: "type mismatch"
"""
# 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()