1--TEST--
2SPL FixedArray offsetExists behaviour on a negative index
3--CREDITS--
4PHPNW TestFest 2009 - Ben Longden
5--FILE--
6<?php
7$array = new SplFixedArray(5);
8if($array->offsetExists(-10) === false) {
9	echo 'PASS';
10}
11?>
12--EXPECT--
13PASS
14