mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
14 lines
187 B
PHP
14 lines
187 B
PHP
--TEST--
|
|
Testing dynamic call with invalid method name
|
|
--FILE--
|
|
<?php
|
|
|
|
$a = new stdClass;
|
|
$b = 1;
|
|
|
|
$a::$b();
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Function name must be a string in %s on line %d
|