()
| 634 | |
| 635 | #[test] |
| 636 | fn expr_nat_lit_matches() { |
| 637 | let r = empty_resolver(); |
| 638 | let lean_e = env::Expr::lit(Literal::NatVal(n(42))); |
| 639 | // Nat expr construction for the zero kernel. |
| 640 | let zero_e = KExpr::<Anon>::nat(n(42), mk_addr("any")); |
| 641 | expr_congruent(&lean_e, &zero_e, &r).unwrap(); |
| 642 | } |
| 643 | |
| 644 | #[test] |
| 645 | fn expr_str_lit_matches() { |
nothing calls this directly
no test coverage detected