mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
12 lines
199 B
Nim
12 lines
199 B
Nim
discard """
|
|
output: "10"
|
|
"""
|
|
|
|
template something(name: untyped) =
|
|
proc name(x: int) =
|
|
var x = x # this one should not be rejected by the compiler (#5225)
|
|
echo x
|
|
|
|
something(what)
|
|
what(10)
|