(s: &str)
| 4514 | let (ind_params, ind_indices, ctors, block, ty) = |
| 4515 | match self.try_get_const(ind_id)? { |
| 4516 | Some(KConst::Indc { params, indices, ctors, block, ty, .. }) => { |
| 4517 | (params, indices, ctors.clone(), block.clone(), ty.clone()) |
| 4518 | }, |
| 4519 | _ => return Ok(false), |
| 4520 | }; |
| 4521 |