php-src/Zend/tests/temporary_cleaning_008.phpt
2020-02-03 22:52:20 +01:00

16 lines
234 B
PHP

--TEST--
Optimization of constant switch expression
--FILE--
<?php
try {
switch ("1" . (int)2) {
case 12:
throw new Exception();
}
} catch (Exception $e) {
echo "exception\n";
}
?>
--EXPECT--
exception