temporary_cleaning_008.phpt   [plain text]


--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