mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 08:54:53 +00:00
18 lines
270 B
Nim
18 lines
270 B
Nim
discard """
|
|
errormsg: "cannot evaluate at compile time: initArray"
|
|
line: 11
|
|
"""
|
|
|
|
# bug #3066
|
|
|
|
proc initArray(): array[10, int]
|
|
|
|
const
|
|
someTable = initArray()
|
|
|
|
proc initArray(): array[10, int] =
|
|
for f in 0..<10:
|
|
result[f] = 3
|
|
|
|
when true: echo repr(someTable)
|