(n: number)
| 71 | |
| 72 | const F = (n: number) => ce.expr(['TestF', n]); |
| 73 | const G = (n: number) => ce.expr(['TestG', n]); |
| 74 | |
| 75 | // A chain over head TestF: F(0)→F(1)→F(2)→G(99) (head change on the last), |
| 76 | // plus a never-firing rule and a rule that would only fire on G (so it is a |
no test coverage detected