1
1
mirror of https://github.com/anoma/juvix.git synced 2024-11-30 05:42:26 +03:00
juvix/tests/positive/SignatureWithBody.juvix
2024-10-23 16:02:56 +02:00

19 lines
312 B
Plaintext

module SignatureWithBody;
import Stdlib.Prelude open;
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;