xref: /PHP-7.4/Zend/tests/bug69025.phpt (revision 35aea97e)
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