Closed
Description
Description
The following code:
<?php
fn(): never => throw new Exception;
Resulted in this output:
Fatal error: A never-returning function must not return in /in/qWWuD on line 3
But I expected this output instead:
Obviously, it's caused by implicit return, but throw expressions never actually return.
PHP Version
8.1.x
Operating System
No response