mirror of
https://github.com/php/php-src.git
synced 2024-12-14 20:33:36 +08:00
17 lines
249 B
PHP
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
|
|
|