summaryrefslogtreecommitdiff
path: root/Zend/tests/bug41026.phpt
blob: 3b8701d09d0511401eb9833b019d38ffc6fb98e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
--TEST--
Bug #41026 (segfault when calling "self::method()" in shutdown functions)
--FILE--
<?php

class try_class
{
	static public function main ()
	{
		register_shutdown_function (array ("self", "on_shutdown"));
	}

	static public function on_shutdown ()
	{
		printf ("CHECKPOINT\n"); /* never reached */
	}
}

try_class::main ();

echo "Done\n";
?>
--EXPECTF--
Done

Warning: (Registered shutdown functions) Unable to call self::on_shutdown() - function does not exist in Unknown on line 0