Files
Nim/tests/errmsgs/t14444.nim
Andreas Rumpf d5719c47dc make --exceptions:quirky work with C++ (#21581)
* make --exceptions:quirky work with C++

* make tests green again
2023-03-31 04:16:09 +02:00

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