summary refs log tree commit diff stats
path: root/tests/reject/twrongconst.nim
blob: 16fe3bff6595fd59f66e4dae71fc3d91809e3000 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
discard """
  output: "Error: constant expression expected"
  line: 7
"""

var x: array[100, char] 
template Foo : expr = x[42]


const myConst = foo