summaryrefslogtreecommitdiff
path: root/Zend/tests/temporary_cleaning_008.phpt
blob: fabd3b4b388474759fb5e7108951bf7405b7ee95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--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