mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-08 14:03:23 +00:00
14 lines
143 B
Nim
14 lines
143 B
Nim
{.experimental: "noforwardDecl".}
|
|
|
|
proc foo(x: int)
|
|
|
|
proc bar(x: int) =
|
|
var s = 1
|
|
inc s, x
|
|
foo(s)
|
|
|
|
|
|
proc foo(x: int) =
|
|
echo x
|
|
|
|
bar(999) |