(s: &str)
| 4511 | /// 2. Result universe is Prop (level is zero) |
| 4512 | /// 3. Exactly one constructor with zero non-param fields |
| 4513 | fn compute_k_target(&mut self, ind_id: &KId<M>) -> Result<bool, TcError<M>> { |
| 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 | }, |