Browse Source

tests for the crash in bug 28213

PHP-5.0
George Schlossnagle 22 years ago
parent
commit
6cc2073d91
  1. 10
      tests/lang/bug28213.phpt

10
tests/lang/bug28213.phpt

@ -0,0 +1,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.*
Loading…
Cancel
Save