mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-03 11:42:33 +00:00
11 lines
157 B
Nim
11 lines
157 B
Nim
discard """
|
|
output: "Error: cannot evaluate at compile time: x"
|
|
line: 10
|
|
"""
|
|
|
|
var x: array[100, char]
|
|
template Foo : expr = x[42]
|
|
|
|
|
|
const myConst = foo
|