Files
wren/test/list/subscript_setter_not_num.wren
T

3 lines
82 B
Plaintext
Raw Normal View History

var a = [1, 2, 3]
a["2"] = 1 // expect runtime error: Subscript must be a number.