044.phpt 168 B

123456789101112
  1. --TEST--
  2. Incorrect cfg block marking for two arm match
  3. --FILE--
  4. <?php
  5. $x = 2;
  6. var_dump(match ($x) {
  7. 2,2 => 'x',
  8. default => 'y',
  9. });
  10. ?>
  11. --EXPECT--
  12. string(1) "x"