blob: c3ea68baec3c0edce36330894c584c54d959e94d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
discard """
errormsg: "value of type 'string' has to be discarded"
line: 12
"""
proc valid*(): string =
let x = 317
"valid"
proc invalid*(): string =
result = "foo"
"invalid"
|