summaryrefslogtreecommitdiff
path: root/tests/lang/bug28213.phpt
blob: 3677d4c6f355703c2f30969f2302f37fbe85659b (plain)
1
2
3
4
5
6
7
8
9
10
--TEST--
Bug #28213 (crash in debug_print_backtrace in static methods)
--FILE--
<?php
class FooBar { static function error() { debug_print_backtrace(); } }
set_error_handler(array('FooBar', 'error'));
include('foobar.php');
?>
--EXPECTREGEX--
.*#1\s*include.*