1
0
mirror of https://github.com/php/php-src.git synced 2026-04-18 05:21:02 +02:00
Files
archived-php-src/ext/spl/tests/SplDoublyLinkedList_count_param_SplDoublyLinkedList.phpt
2009-05-23 15:38:18 +00:00

11 lines
358 B
PHP

--TEST--
Create a SplDoublyLinkedList, call count() and pass a SplDoublyLinkedList object as the parameter.
--CREDITS--
Philip Norton philipnorton42@gmail.com
--FILE--
<?php
$dll = new SplDoublyLinkedList(2);
$dll->count(new SplDoublyLinkedList(2));
?>
--EXPECTF--
Warning: SplDoublyLinkedList::count() expects exactly 0 parameters, 1 given in %s on line %d