1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/ext/spl/tests/SplDoublyLinkedList_bottom_empty.phpt
2018-02-19 08:26:34 +01:00

15 lines
272 B
PHP

--TEST--
SplDoublyLinkedList::bottom empty
--CREDITS--
Gabriel Caruso (carusogabriel34@gmail.com)
--FILE--
<?php
try {
(new SplDoublyLinkedList)->bottom();
} catch (RuntimeException $e) {
echo $e->getMessage();
}
?>
--EXPECT--
Can't peek at an empty datastructure