]> git.lizzy.rs Git - rust.git/commit
Auto merge of #8912 - Alexendoo:needless-late-init-ice, r=giraffate
authorbors <bors@rust-lang.org>
Tue, 31 May 2022 00:46:52 +0000 (00:46 +0000)
committerbors <bors@rust-lang.org>
Tue, 31 May 2022 00:46:52 +0000 (00:46 +0000)
commite1607e9d31d9ade0001fcbc9988e7d1c4f50cf21
tree91f6ce2bdcf21a4540b6520c5615228013b424c7
parent588e1982d3201814a454d1cac2bbe705ac223a5c
parent722f7d28c3daf2d568a3af77a62c489fb6a1aea2
Auto merge of #8912 - Alexendoo:needless-late-init-ice, r=giraffate

needless_late_init: fix ICE when all branches return the never type

Fixes #8911

When the assignment is done in a match guard or the if condition and all of the branches return the never type `assignment_suggestions` would return an empty `Vec` which caused the ICE. It now returns `None` in that scenario

Also moves some tests to the top of the file

changelog: ICE Fixes: [`needless_late_init`] #8911