mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-04 20:17:42 +00:00
15 lines
144 B
Nim
15 lines
144 B
Nim
{.experimental: "noforwardDecl".}
|
|
|
|
|
|
proc bar(x: int) =
|
|
var s = 1
|
|
inc s, x
|
|
foo(s)
|
|
|
|
proc foo(x: int)
|
|
|
|
|
|
proc foo(x: int) =
|
|
echo x
|
|
|
|
bar(999) |