import zend standard tests
[hiphop-php.git] / hphp / test / zend / good / ext-standard-general_functions / callbacks_002.php
blobe1eb222ee2b0bbaedabe23da80f57835b345fe1c
1 <?php
3 call_user_func(array('Foo', 'bar'));
4 call_user_func(array(NULL, 'bar'));
5 call_user_func(array('stdclass', NULL));
7 ?>