mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 09:54:49 +00:00
10 lines
149 B
Nim
10 lines
149 B
Nim
discard """
|
|
errormsg: "cannot evaluate at compile time: x"
|
|
line: 7
|
|
"""
|
|
|
|
var x: array[100, char]
|
|
template foo : char = x[42]
|
|
|
|
const myConst = foo
|