Files
Nim/tests/trmacros/tnoalias.nim
2017-07-25 09:28:23 +02:00

17 lines
174 B
Nim

discard """
output: "23"
"""
template optslice{a = b + c}(a: untyped{noalias}, b, c: untyped): typed =
a = b
inc a, c
var
x = 12
y = 10
z = 13
x = y+z
echo x