mirror of
https://github.com/anoma/juvix.git
synced 2025-01-07 08:08:44 +03:00
3fbc9c7c55
Closes #1644 #1635
15 lines
184 B
Plaintext
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;
|