php-src/Zend/tests/errmsg_022.phpt
2020-09-09 10:47:43 +02:00

18 lines
283 B
PHP

--TEST--
errmsg: only variables can be passed by reference
--FILE--
<?php
function foo (&$var) {
}
foo(1);
echo "Done\n";
?>
--EXPECTF--
Fatal error: Uncaught Error: foo(): Argument #1 ($var) cannot be passed by reference in %s:%d
Stack trace:
#0 {main}
thrown in %s on line %d