# SCENARIO deque.get error with negative index
# 	GIVEN A Deque of size 5

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

# 	WHEN Get with negative index

call deque.get(dq, result, -6)

# 		THEN Throws exception
# 			REQUIRE THROWS ARRAY_ACCESS_OUT_OF_BOUNDS
