1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-11 08:25:46 +03:00
juvix/tests/negative/Termination/Mutual.juvix

12 lines
112 B
Plaintext
Raw Normal View History

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