()
| 6669 | let generated = |
| 6670 | tc.env.recursor_cache.get(&block).expect("recursor should be cached"); |
| 6671 | assert_eq!( |
| 6672 | generated.len(), |
| 6673 | 2, |
| 6674 | "flat block should produce 2 recursors (PTree + List aux)" |
| 6675 | ); |
| 6676 | } |
| 6677 | |
| 6678 | #[test] |
| 6679 | fn poly_nested_rec_binder_count() { |
| 6680 | let mut env = poly_nested_env(); |
| 6681 | let mut tc = TypeChecker::new(&mut env); |
nothing calls this directly
no test coverage detected