Files
Nim/tests/run/tlocals.nim
2013-03-21 21:28:46 +01:00

12 lines
146 B
Nim

discard """
output: "(x: string here, a: 1, b: 3)"
"""
proc simple[T](a, b: T) =
var
x = "string here"
echo locals()
simple(1, 3)