Idris2/tests/idris2/total006/expected
Justus Matthiesen 914d68858b [ termination ] faithful implementation of size-change graph termination analysis
- call sequences in termination errors now carry location information
- new error message (`BadPath`) for late-starting loops
- [ fix ] transitive closure of size-change graphs no longer ignores function arguments
- update existing tests accordingly
2023-02-08 16:13:04 +00:00

9 lines
357 B
Plaintext

1/1: Building Total (Total.idr)
Main> Main.streamCount is total
Main> Main.badCount is possibly not terminating due to recursive path Main.badCount
Main> Main.process is total
Main> Main.badProcess is possibly not terminating due to recursive path Main.badProcess -> Main.badProcess
Main> Main.doubleInt is total
Main> Main.main is total
Main> Bye for now!