php-8.0.30-src/Zend/tests/match/044.phpt

13 lines
168 B
PHP

--TEST--
Incorrect cfg block marking for two arm match
--FILE--
<?php
$x = 2;
var_dump(match ($x) {
2,2 => 'x',
default => 'y',
});
?>
--EXPECT--
string(1) "x"