mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
16 lines
189 B
PHP
16 lines
189 B
PHP
--TEST--
|
|
Bug #69025 (Invalid read of size 4 when calling __callStatic)
|
|
--FILE--
|
|
<?php
|
|
class A {
|
|
public static function __callStatic($method, $args)
|
|
{
|
|
}
|
|
}
|
|
|
|
A::init();
|
|
?>
|
|
OK
|
|
--EXPECT--
|
|
OK
|