mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
* remove unused opcSubstr
* [js] add testcase for array indexDefect
* Revert "remove unused opcSubstr"
This reverts commit cb461f2545.
9 lines
169 B
Nim
9 lines
169 B
Nim
discard """
|
|
outputsub: "unhandled exception: index 10000 not in 0 .. 0 [IndexDefect]"
|
|
exitcode: 1
|
|
joinable: false
|
|
"""
|
|
|
|
var s = ['a']
|
|
let z = s[10000] == 'a'
|
|
echo z |