mirror of
https://github.com/php/php-src.git
synced 2024-12-04 23:34:25 +08:00
14 lines
307 B
PHP
14 lines
307 B
PHP
--TEST--
|
|
SplDoublyLinkedList::offsetGet() with no parameter passed.
|
|
--CREDITS--
|
|
PHPNW Test Fest 2009 - Jordan Hatch
|
|
--FILE--
|
|
<?php
|
|
|
|
$array = new SplDoublyLinkedList( );
|
|
|
|
$get = $array->pop( 'param' );
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Warning: SplDoublyLinkedList::pop() expects exactly 0 parameters, 1 given in %s on line %d
|