1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-01 00:04:58 +03:00
juvix/tests/negative/Termination/TerminatingF.juvix
2023-07-11 17:22:07 +02:00

13 lines
130 B
Plaintext

module TerminatingF;
axiom A : Type;
terminating
f : A -> A -> A
| x y := g x (f x x);
g : A -> A -> A
| x y := f x x;