Hi Benas

>> I'd like to announce the match expression v2 RFC:
>> https://wiki.php.net/rfc/match_expression_v2

> Then it's not a standalone expression but a block. In this case, you cannot 
> add an optional semicolon at all.
>
> But this RFC v2 is not proposing to add a block, therefore you won't be 
> allowed to use `match` construct as a standalone expression anyways.

Using match as a standalone expression is definitely allowed, just
like any other expression.

// This is fine, the semicolon is required
match ($foo) {
    $bar => baz(),
};

Ilija

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: https://www.php.net/unsub.php

Reply via email to