php-src/Zend/tests/variadic/by_ref_error.phpt
2013-09-26 18:39:17 +02:00

13 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