summaryrefslogtreecommitdiff
path: root/ext/spl/tests/SplDoublyLinkedList_count_param_SplDoublyLinkedList.phpt
blob: 60203eb4a07927e4f9d2652c4881ebcd12e5910c (plain)
1
2
3
4
5
6
7
8
9
10
11
--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