mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
0d7a638866
As per RFC: https://wiki.php.net/rfc/variadics
11 lines
197 B
PHP
11 lines
197 B
PHP
--TEST--
|
|
Variadic argument cannot have a default value
|
|
--FILE--
|
|
<?php
|
|
|
|
function test(...$args = 123) {}
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Variadic parameter cannot have a default value in %s on line %d
|