1
0
mirror of https://github.com/php/php-src.git synced 2026-04-28 18:53:33 +02:00
Files
archived-php-src/Zend/tests/match/038.phpt
T
2020-07-09 23:52:17 +02:00

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