mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
13 lines
166 B
Nim
13 lines
166 B
Nim
discard """
|
|
line: 10
|
|
errormsg: "value of type 'string' has to be discarded"
|
|
"""
|
|
|
|
# bug #578
|
|
|
|
proc test: string =
|
|
result = "blah"
|
|
result[1 .. -1]
|
|
|
|
echo test()
|