ru_php/Zend/tests/match/match_of_phi_optimization.phpt

15 lines
289 B
PHP

--TEST--
Unreachable code elimination when match argument is a phi node
--FILE--
<?php
$x = true;
match ($x and true or true) {
false => $x
};
?>
--EXPECTF--
Fatal error: Uncaught UnhandledMatchError: Unhandled match case true in %s:%d
Stack trace:
#0 {main}
thrown in %s on line %d