Files
wren/test/list/insert_index_too_large.wren
T

3 lines
85 B
Plaintext
Raw Normal View History

var a = [1, 2, 3]
a.insert("value", 4) // expect runtime error: Index out of bounds.