summaryrefslogtreecommitdiff
path: root/tests/lang/009.phpt
blob: 5498288dcfdfb72a79d6e6e5174b60544e20de56 (plain)
1
2
3
4
5
6
7
8
9
10
11
--TEST--
Testing function parameter passing
--POST--
--GET--
--FILE--
<?php  old_function Test $a,$b (
		echo $a+$b;	
	);
	Test(1,2)?>
--EXPECT--
3