mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-14 03:25:54 +00:00
13 lines
159 B
Nim
13 lines
159 B
Nim
discard """
|
|
nimout: '''
|
|
3
|
|
3
|
|
'''
|
|
"""
|
|
|
|
proc f(x: static[auto]) = # doesn't work
|
|
static: echo x
|
|
proc g[T](x: static[T]) = # works
|
|
static: echo x
|
|
f(3)
|
|
g(3) |