xref: /php-src/Zend/tests/match/044.phpt (revision 17d6efc7)
1--TEST--
2Incorrect cfg block marking for two arm match
3--FILE--
4<?php
5$x = 2;
6var_dump(match ($x) {
7    2,2 => 'x',
8    default => 'y',
9});
10?>
11--EXPECT--
12string(1) "x"
13