products/Sources/formale Sprachen/Coq/test-suite/bugs/closed image not shown  

Quellcode-Bibliothek

© Kompilation durch diese Firma

[Weder Korrektheit noch Funktionsfähigkeit der Software werden zugesichert.]

Datei: HoTT_coq_025.v   Sprache: Coq

Original von: Coq©

Module monomorphic.
  Class Inhabited (A : Type) : Prop := populate { _ : A }.
  Arguments populate {_} _.

  Instance prod_inhabited {A B : Type} (iA : Inhabited A)
           (iB : Inhabited B) :   Inhabited (A * B) :=
    match iA, iB with
      | populate x, populate y => populate (x,y)
    end.
  (* Error: In environment
A : Type
B : Type
iA : Inhabited A
iB : Inhabited B
The term "(A * B)%type" has type "Type" while it is expected to have type
"Prop". *)

End monomorphic.

Module polymorphic.
  Set Universe Polymorphism.
  Class Inhabited (A : Type) : Prop := populate { _ : A }.
  Arguments populate {_} _.

  Instance prod_inhabited {A B : Type} (iA : Inhabited A)
           (iB : Inhabited B) :   Inhabited (A * B) :=
    match iA, iB with
      | populate x, populate y => populate (x,y)
    end.
End polymorphic.

¤ Dauer der Verarbeitung: 0.4 Sekunden  (vorverarbeitet)  ¤





Download des
Quellennavigators
Download des
sprechenden Kalenders

in der Quellcodebibliothek suchen




Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.


Bemerkung:

Die farbliche Syntaxdarstellung ist noch experimentell.


Bot Zugriff