# Bug Report <!-- First, thank you for reporting a bug. That takes time and we appreciate that! --> | Subject | Details | | :------------- | :--------------------| | Rector version | last dev-main | | Installed as | composer dependency | ## Minimal PHP Code Causing Issue See https://getrector.com/demo/895266d8-462e-40a9-98e8-81d61c3b1919 ```php <?php class Foo { public function run(): void { } } class Bar extends Foo { /** * @return never */ public function run(): never { exit; } } new Bar(); ``` ### Responsible rules * `DowngradeNeverTypeDeclarationRector` ## Expected Behavior Rector created code has a fatal: https://3v4l.org/ODTRm#v8.4.12 Using void works correctly/no fatal: https://3v4l.org/7u2rKv#v8.4.12 I already told you in https://github.com/rectorphp/rector/issues/9333#issuecomment-3229255908 but you closed it to contributors only...