()
| 5774 | KConst::Ctor { |
| 5775 | name: (), |
| 5776 | level_params: (), |
| 5777 | is_unsafe: false, |
| 5778 | lvls: 0, |
| 5779 | induct: mk_id("Nat"), |
| 5780 | cidx: 0, |
| 5781 | params: 0, |
| 5782 | fields: 0, |
| 5783 | ty: nat(), |
| 5784 | }, |
| 5785 | ); |
| 5786 | env.insert( |
| 5787 | mk_id("Nat.succ"), |
| 5788 | KConst::Ctor { |
| 5789 | name: (), |
| 5790 | level_params: (), |
| 5791 | is_unsafe: false, |
| 5792 | lvls: 0, |
| 5793 | induct: mk_id("Nat"), |
| 5794 | cidx: 1, |
| 5795 | params: 0, |
| 5796 | fields: 1, |
| 5797 | ty: pi(nat(), nat()), |
| 5798 | }, |
| 5799 | ); |
| 5800 |
nothing calls this directly
no test coverage detected