mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-31 10:22:15 +00:00
14 lines
245 B
Nim
14 lines
245 B
Nim
discard """
|
|
errormsg: "expression 'true' is of type 'bool' and has to be discarded"
|
|
line: 13
|
|
file: "tdont_show_system.nim"
|
|
"""
|
|
|
|
# bug #4308
|
|
|
|
#proc getGameTile: int =
|
|
# 1 > 0
|
|
|
|
# bug #4905 subsumes the problem of #4308:
|
|
true notin {false}
|