summaryrefslogtreecommitdiff
path: root/Zend/tests/bug69025.phpt
blob: 8cb5f878f21d701e5dfabc137acbe096362818f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--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