mirror of
https://github.com/nim-lang/Nim.git
synced 2026-08-26 16:41:39 +00:00
18 lines
242 B
Nim
18 lines
242 B
Nim
discard """
|
|
file: "tstaticparams.nim"
|
|
output: "abracadabra\ntest"
|
|
"""
|
|
|
|
type
|
|
TFoo[T; Val: expr[string]] = object
|
|
data: array[4, T]
|
|
|
|
proc takeFoo(x: TFoo) =
|
|
echo "abracadabra"
|
|
echo TFoo.Val
|
|
|
|
var x: TFoo[int, "test"]
|
|
|
|
takeFoo(x)
|
|
|