mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 08:54:53 +00:00
15 lines
171 B
Nim
15 lines
171 B
Nim
discard """
|
|
matrix: "--warningAsError:ProveInit"
|
|
"""
|
|
|
|
{.experimental: "strictdefs".}
|
|
|
|
proc foo(x: out int) =
|
|
x = 1
|
|
|
|
proc bar(x: out int) =
|
|
foo(x)
|
|
|
|
var s: int
|
|
bar(s)
|