1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 08:42:29 +01:00
Files
archived-php-src/Zend/tests/errmsg_022.phpt
2023-07-18 15:02:38 +02:00

18 lines
286 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) could not be passed by reference in %s:%d
Stack trace:
#0 {main}
thrown in %s on line %d