mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
17 lines
174 B
Nim
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
|