RFC: https://wiki.php.net/rfc/throw_expression Example: ```php $callable = fn() => throw new Exception(); $value = $nullableValue ?? throw new InvalidArgumentException(); ```