1--TEST--
2SplFixedArray::getSize() pass a parameter when none are expected
3--CREDITS--
4PHPNW Testfest 2009 - Adrian Hardy
5--FILE--
6<?php
7$fixed_array = new SplFixedArray(2);
8echo "*test* ".$fixed_array->getSize(3);
9?>
10--EXPECTF--
11Warning: SplFixedArray::getSize() expects exactly 0 parameters, 1 given in %s on line %d
12*test*
13