mirror of
https://github.com/anoma/juvix.git
synced 2024-12-12 14:28:08 +03:00
3fbc9c7c55
Closes #1644 #1635
16 lines
267 B
Plaintext
16 lines
267 B
Plaintext
module HoleInSignature;
|
|
type Pair (A : Type) (B : Type) :=
|
|
mkPair : A → B → Pair A B;
|
|
|
|
type Bool :=
|
|
true : Bool |
|
|
false : Bool;
|
|
|
|
p : Pair _ _;
|
|
p := mkPair true false;
|
|
|
|
p2 : (A : Type) → (B : Type) → _ → B → Pair A _;
|
|
p2 _ _ a b := mkPair a b;
|
|
|
|
end;
|