summaryrefslogtreecommitdiff
path: root/Zend/tests/bug69025.phpt
blob: 389c09f75fb90ba76b72043bb46bcb361bba8d37 (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