1
1
mirror of https://github.com/anoma/juvix.git synced 2025-01-07 08:08:44 +03:00
juvix/tests/positive/Internal/Positivity/E5.juvix

15 lines
184 B
Plaintext

module E5;
type T0 (A : Type) :=
c0 : (A -> T0 A) -> T0 A;
axiom B : Type;
type T1 (A : Type) :=
c1 : (B -> T0 A) -> T1 A;
positive
type T2 :=
c2 : (B -> (B -> T1 T2)) -> T2;
end;