mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
15 lines
121 B
Nim
15 lines
121 B
Nim
discard """
|
|
disabled: true
|
|
"""
|
|
|
|
{. noforward: on .}
|
|
|
|
proc foo(x: int) =
|
|
bar x
|
|
|
|
proc bar(x: int) =
|
|
echo x
|
|
|
|
foo(10)
|
|
|