1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-12 14:28:08 +03:00
juvix/tests/positive/Internal/HoleInSignature.juvix

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;