()
| 4676 | for member in &members { |
| 4677 | if !matches!(self.try_get_const(member)?, Some(KConst::Recr { .. })) { |
| 4678 | return self.check_recursor_member(id); |
| 4679 | } |
| 4680 | } |
| 4681 | |
| 4682 | if let Some(result) = self.env.block_check_results.get(&block).cloned() { |
| 4683 | return result; |
| 4684 | } |
| 4685 | let result = self.check_recursor_block(&block, &members); |
nothing calls this directly
no test coverage detected