1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-14 08:27:03 +03:00
juvix/tests/positive/SignatureWithBody.juvix
2023-02-01 19:22:43 +01:00

16 lines
331 B
Plaintext

module SignatureWithBody;
open import Stdlib.Prelude;
isNull : {A : Type} → List A → Bool := λ {
| nil := true
| _ := false
};
isNull' : {A : Type} → List A → Bool := let
aux : {A : Type} → List A → Bool := λ {
| nil := true
| _ := false
};
in aux;
end;