php-src/ext/opcache/tests/switch_with_coinciding_targets.phpt
2017-04-10 22:23:14 +02:00

22 lines
267 B
PHP

--TEST--
Switch where all targets, including default, coincide
--FILE--
<?php
$foo = 42.0;
$bar = true;
switch ($foo) {
default:
case 0: case 1: case 2: case 3:
if ($bar) {
echo "true\n";
} else {
echo "false\n";
}
}
?>
--EXPECT--
true