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

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