1Throw expression
2-----
3<?php
4test(throw $x);
5$a ?? throw new Exception;
6-----
7test(throw $x);
8$a ?? throw new Exception();