mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00
12 lines
192 B
PHP
12 lines
192 B
PHP
--TEST--
|
|
By-ref variadics enforce the reference
|
|
--FILE--
|
|
<?php
|
|
|
|
function test(&... $args) { }
|
|
|
|
test(1);
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Only variables can be passed by reference in %s on line %d
|