blob: a658880f0f425c368ed81a432dbe44fce4624f5a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
discard """
matrix: "--warningAsError:UnreachableCode"
"""
proc test(): bool =
block okay:
if true: break okay
return false
return true # Line 7 is here
doAssert test()
|