php-src/Zend/tests/bug69025.phpt
2020-02-03 22:52:20 +01:00

16 lines
198 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