mirror of
https://github.com/php/php-src.git
synced 2026-04-22 07:28:09 +02:00
9fa1d13301
RFC: https://wiki.php.net/rfc/match_expression_v2 Closes GH-5371.
14 lines
227 B
PHP
14 lines
227 B
PHP
--TEST--
|
|
Match expression with no cases
|
|
--FILE--
|
|
<?php
|
|
|
|
$x = match (true) {};
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught UnhandledMatchError: Unhandled match value of type bool in %s
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %s on line %d
|