(&mut self, msg: String)
| 1660 | gen_ci.get_type().pretty(), |
| 1661 | orig_ci.get_type().pretty(), |
| 1662 | ); |
| 1663 | let gen_val_str = match &gen_ci { |
| 1664 | LeanCI::DefnInfo(d) => d.value.pretty(), |
| 1665 | LeanCI::ThmInfo(t) => t.value.pretty(), |
| 1666 | LeanCI::RecInfo(r) => format!( |
| 1667 | "<rec with {} rules>\n rule[0].rhs: {}", |
| 1668 | r.rules.len(), |
| 1669 | r.rules.first().map(|x| x.rhs.pretty()).unwrap_or_default() |
| 1670 | ), |
no test coverage detected