mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-07 13:33:22 +00:00
14 lines
289 B
Nim
14 lines
289 B
Nim
discard """
|
|
matrix: "--hints:off"
|
|
exitcode: "1"
|
|
output: '''
|
|
t14444.nim(13) t14444
|
|
fatal.nim(53) sysFatal
|
|
Error: unhandled exception: index out of bounds, the container is empty [IndexDefect]
|
|
'''
|
|
"""
|
|
|
|
when true: # bug #14444
|
|
var i: string
|
|
i[10] = 'j'
|
|
echo i |