mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
15 lines
169 B
Nim
15 lines
169 B
Nim
discard """
|
|
errormsg: "index out of bounds"
|
|
line: 11
|
|
"""
|
|
|
|
|
|
type TTestArr = array[0..1, int16]
|
|
var f: TTestArr
|
|
f[0] = 30
|
|
f[1] = 40
|
|
f[2] = 50
|
|
f[3] = 60
|
|
|
|
echo(repr(f))
|