1--TEST--
2ReflectionParameter::export() without parameters
3--CREDITS--
4Stefan Koopmanschap <stefan@stefankoopmanschap.nl>
5--FILE--
6<?php
7function ReflectionParameterTest($test, $test2 = null) {
8	echo $test;
9}
10$reflect = new ReflectionFunction('ReflectionParameterTest');
11foreach($reflect->getParameters() as $key => $value) {
12	ReflectionParameter::export();
13}
14?>
15==DONE==
16--EXPECTF--
17
18Warning: ReflectionParameter::export() expects at least 2 parameters, 0 given in %s.php on line %d
19
20Warning: ReflectionParameter::export() expects at least 2 parameters, 0 given in %s.php on line %d
21==DONE==
22