1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 09:12:14 +01:00
Files
archived-php-src/Zend/tests/bug69025.phpt

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