blob: ee6ff3f777c46242beeeff4a23bb54c69bf42500 (
plain)
1
2
3
4
5
6
7
8
9
10
|
--TEST--
Only the last argument can be variadic
--FILE--
<?php
function test($foo, ...$bar, $baz) {}
?>
--EXPECTF--
Fatal error: Only the last parameter can be variadic in %s on line %d
|