ru_php/ext/opcache/tests/switch_with_coinciding_targets.phpt

24 lines
290 B
PHP

--TEST--
Switch where all targets, including default, coincide
--EXTENSIONS--
opcache
--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