xref: /PHP-8.0/Zend/tests/bug69025.phpt (revision f8d79582)
1--TEST--
2Bug #69025 (Invalid read of size 4 when calling __callStatic)
3--FILE--
4<?php
5class A {
6    public static function __callStatic($method, $args)
7    {
8    }
9}
10
11A::init();
12?>
13OK
14--EXPECT--
15OK
16