1--TEST--
2SplDoublyLinkedList getIteratorMode with an unexpected parameter
3--CREDITS--
4PHPNW Testfest 2009 - Lorna Mitchell
5--FILE--
6<?php
7$list = new SplDoublyLinkedList();
8$list->getIteratorMode(24);
9?>
10--EXPECTF--
11Warning: SplDoublyLinkedList::getIteratorMode() expects exactly 0 parameters, 1 given in %s on line %d
12
13