Files
wren/test/list/subscript_setter_too_small.wren
T

3 lines
78 B
Plaintext
Raw Normal View History

var a = [1, 2, 3]
a[-5] = 1 // expect runtime error: Subscript out of bounds.