php-parser/test/code/prettyPrinter/expr/throw.test
2020-08-09 20:52:55 +02:00

9 lines
129 B
Plaintext

Throw expression
-----
<?php
test(throw $x);
$a ?? throw new Exception;
-----
!!php7
test(throw $x);
$a ?? throw new Exception();