summary refs log tree commit diff stats
path: root/tests/ccgbugs/tcompile_time_var_at_runtime.nim
blob: c0de0390b4acb8b6a5f4427eadabfb1a6a075e9f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
discard """
  output: "1\n2\n2\n3"
"""
var a {.compileTime.} = 1

echo a
a = 2
echo a
echo a
a = 3
echo a