mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 08:54:53 +00:00
16 lines
156 B
Nim
16 lines
156 B
Nim
discard """
|
|
output: "10"
|
|
"""
|
|
|
|
# {. noforward: on .}
|
|
{.experimental: "codeReordering".}
|
|
|
|
proc foo(x: int) =
|
|
bar x
|
|
|
|
proc bar(x: int) =
|
|
echo x
|
|
|
|
foo(10)
|
|
|