mirror of
https://github.com/php/php-src.git
synced 2024-12-14 04:16:30 +08:00
12 lines
246 B
PHP
12 lines
246 B
PHP
--TEST--
|
|
Bug #67468 (Segfault in highlight_file()/highlight_string())
|
|
--SKIPIF--
|
|
<?php if(!function_exists("leak")) print "skip only for debug builds"; ?>
|
|
--FILE--
|
|
<?php
|
|
highlight_string("<?php __CLASS__;", true);
|
|
echo "done";
|
|
?>
|
|
--EXPECT--
|
|
done
|