1
1
mirror of https://github.com/anoma/juvix.git synced 2025-01-05 22:46:08 +03:00
juvix/tests/positive/Reachability/N.juvix

13 lines
132 B
Plaintext

module N;
open import M;
open import Stdlib.Prelude;
test : {A : Type} -> A -> A;
test x := x;
type Unit :=
unit : Unit;
end;