Files
wren/test/list/subscript_setter_not_int.wren

3 lines
84 B
Plaintext
Raw Normal View History

var a = [1, 2, 3]
a[1.5] = 1 // expect runtime error: Subscript must be an integer.