1--TEST--
2Checks that the pop() method of DoublyLinkedList does not accept args.
3--CREDITS--
4PHPNW Test Fest 2009 - Rick Ogden
5--FILE--
6<?php
7$ll = new SplDoublyLinkedList();
8$ll->push(1);
9$ll->push(2);
10
11var_dump($ll->pop(1));
12?>
13--EXPECTF--
14Warning: SplDoublyLinkedList::pop() expects exactly 0 parameters, 1 given in %s on line %d
15NULL
16