Skip to Content.
Sympa Menu

coq-club - [Coq-Club] Applications in functor parameters

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

[Coq-Club] Applications in functor parameters


chronological Thread 
  • From: Nicolas BERTAUX <nicolas.bertaux AT etu.upmc.fr>
  • To: coq-club AT pauillac.inria.fr
  • Subject: [Coq-Club] Applications in functor parameters
  • Date: Fri, 19 Sep 2008 17:38:05 +0200
  • List-archive: <http://pauillac.inria.fr/pipermail/coq-club/>

Hello,

I have the following problem with applications occurring as effective
parameters of functors:

Module Type S.
End S.

Module F (X : S).
End F.

Module M1.
End M1.

Module Type MT (Y : S).
End MT.

Module M2 (X : S) <: MT(F(X)).
  Module M := M1(F(X)).
End M2.

User error: Application to not path

Why cannot I directly pass an application as effective parameter of a functor?
Is this normal?
Is there any workaround?

Nicolas






Archive powered by MhonArc 2.6.16.

Top of Page