mirror of
https://github.com/php/php-src.git
synced 2024-12-05 07:46:06 +08:00
13 lines
222 B
PHP
13 lines
222 B
PHP
--TEST--
|
|
Testing dynamic call with undefined variables
|
|
--FILE--
|
|
<?php
|
|
|
|
$a::$b();
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Notice: Undefined variable: a in %s on line %d
|
|
|
|
Fatal error: Class name must be a valid object or a string in %s on line %d
|