php-src/Zend/tests/first_class_callable_016.phpt
2022-11-07 12:19:54 +03:00

16 lines
226 B
PHP

--TEST--
First class callables and &__call()
--FILE--
<?php
class Foo {
public function &__call($method, $args) {
return $method;
}
}
$foo = new Foo;
$bar = $foo->bar(...);
echo $bar(),"\n";
?>
--EXPECT--
bar