1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-02 23:43:01 +03:00
juvix/tests/negative/Internal/ExpectedExplicitArgument.juvix

8 lines
138 B
Plaintext

module ExpectedExplicitArgument;
type T (A : Type) :=
c : A → T A;
f : {A : Type} → A → T A;
f {A} a := c {A} {a};
end;