# SCENARIO deque.set error index beyond deque limits
# 	GIVEN A Deque of size 5

var dq[7] = [ 3, 3, 13, 0, 0, 11, 12 ]

# 	WHEN Set index beyond deque limits

call deque.set(dq, 11, 20)

# 		THEN Throws exception
# 			REQUIRE THROWS ARRAY_ACCESS_OUT_OF_BOUNDS
