mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 09:54:49 +00:00
13 lines
227 B
Nim
13 lines
227 B
Nim
discard """
|
|
errormsg: '''expression '"invalid"' is of type 'string' and has to be used (or discarded)'''
|
|
line: 12
|
|
"""
|
|
|
|
proc valid*(): string =
|
|
let x = 317
|
|
"valid"
|
|
|
|
proc invalid*(): string =
|
|
result = "foo"
|
|
"invalid"
|