mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
12 lines
131 B
Nim
12 lines
131 B
Nim
discard """
|
|
output: "(x: string here, a: 1)"
|
|
"""
|
|
|
|
proc simple[T](a: T) =
|
|
var
|
|
x = "string here"
|
|
echo locals()
|
|
|
|
simple(1)
|
|
|