Skip to Content.
Sympa Menu

coq-club - [Coq-Club] Best explanation for simple type observation

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

[Coq-Club] Best explanation for simple type observation


Chronological Thread 
  • From: Kevin Sullivan <sullivan.kevinj AT gmail.com>
  • To: "coq-club AT inria.fr" <coq-club AT inria.fr>
  • Subject: [Coq-Club] Best explanation for simple type observation
  • Date: Wed, 14 Jan 2015 10:41:11 -0500

Intuitively this should not work. And it doesn't.
    Inductive E: Set := .
    Definition p: Prop := E.

But this does.
    Inductive P: Prop := .
    Definition s: Set := P.

Can someone point me to the right part of the manual to determine how best to explain why?

KS





Archive powered by MHonArc 2.6.18.

Top of Page