mirror of
https://github.com/php/php-src.git
synced 2026-03-28 02:02:32 +01:00
14 lines
236 B
PHP
14 lines
236 B
PHP
--TEST--
|
|
Bug #65593 (ob_start(function(){ob_start();});)
|
|
--FILE--
|
|
<?php
|
|
echo "Test\n";
|
|
|
|
ob_start(function(){ob_start();});
|
|
?>
|
|
===DONE===
|
|
--EXPECTF--
|
|
Test
|
|
|
|
Fatal error: Cannot destroy active lambda function in %sbug65593.php on line %d
|