blob: 7f21014146406d3f328dc42b8bd6262ff56e0a35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--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
|