blob: 39c41d032bbb19e8d859abe0f82d4d15986dc04a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--TEST--
Argument-less return from by-ref function
--FILE--
<?php
function &test() {
return;
}
$ref =& test();
?>
--EXPECTF--
Notice: Only variable references should be returned by reference in %s on line %d
|