summaryrefslogtreecommitdiff
path: root/Zend/tests/magic_by_ref_006.phpt
blob: 14d7d708b8e7145b5689f8d19469a2a49122fe0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--TEST--
passing first parameter of __call() by ref
--FILE--
<?php

class test {
    function __call(&$name, $args) { }
}

$t = new test;
$func = "foo";

$t->$func();

echo "Done\n";
?>
--EXPECTF--	
Fatal error: Method test::__call() cannot take arguments by reference in %s on line %d