mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00
10 lines
188 B
PHP
10 lines
188 B
PHP
--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
|