php-src/Zend/tests/temporary_cleaning_016.phpt
Dmitry Stogov 18f567a3b4 Fixed test
2017-08-14 12:37:37 +03:00

17 lines
249 B
PHP

--TEST--
Live ranges should be ordered according to "start" position
--FILE--
<?php
set_error_handler(function($no, $msg) { throw new Exception; });
try {
$a = [];
$str = "$a${"y$a$a"}y";
} catch (Exception $e) {
}
?>
DONE
--EXPECT--
DONE