mirror of
https://github.com/php/php-src.git
synced 2026-04-22 15:38:49 +02:00
9fa1d13301
RFC: https://wiki.php.net/rfc/match_expression_v2 Closes GH-5371.
13 lines
128 B
PHP
13 lines
128 B
PHP
--TEST--
|
|
Match expression discarding result
|
|
--FILE--
|
|
<?php
|
|
|
|
match (1) {
|
|
1 => print "Executed\n",
|
|
};
|
|
|
|
?>
|
|
--EXPECT--
|
|
Executed
|