1--TEST--
2SplDoublyLinkedList::bottom() - pass in an unexpected integer parameter
3--CREDITS--
4PHPNW Testfest 2009 - Adrian Hardy
5--FILE--
6<?php
7
8$list = new SplDoublyLinkedList();
9$list->push("top");
10$list->bottom(45);
11
12?>
13--EXPECTF--
14Warning: SplDoublyLinkedList::bottom() expects exactly 0 parameters, 1 given in %s on line %d
15