Files
Nim/tests/exprs/texprstmt.nim
2014-01-13 02:10:03 +01:00

13 lines
171 B
Nim

discard """
line: 10
errormsg: "value returned by statement has to be discarded"
"""
# bug #578
proc test: string =
result = "blah"
result[1 .. -1]
echo test()