mirror of
https://github.com/php/php-src.git
synced 2026-04-28 18:53:33 +02:00
9fa1d13301
RFC: https://wiki.php.net/rfc/match_expression_v2 Closes GH-5371.
16 lines
266 B
PHP
16 lines
266 B
PHP
--TEST--
|
|
Test multiple default arms in match in different arms
|
|
--FILE--
|
|
<?php
|
|
|
|
match (1) {
|
|
default => 'foo',
|
|
1 => 'bar',
|
|
2 => 'baz',
|
|
default => 'qux',
|
|
};
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Match expressions may only contain one default arm in %s on line 7
|