summaryrefslogtreecommitdiff
path: root/ext/spl/tests/SplDoublyLinkedList_top_pass_float.phpt
blob: 0a481b85a0cb61e323e8a3d3ea0e03d36d4f1efb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
SplDoublyLinkedList::top() - pass in an unexpected float parameter
--CREDITS--
PHPNW Testfest 2009 - Adrian Hardy
--FILE--
<?php

$list = new SplDoublyLinkedList();
$list->push("top");
$list->top(3.14159);

?>
--EXPECTF--
Warning: SplDoublyLinkedList::top() expects exactly 0 parameters, 1 given in %s on line %d