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