File: issue284.v

package info (click to toggle)
coq-hierarchy-builder 1.8.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,988 kB
  • sloc: makefile: 109
file content (16 lines) | stat: -rw-r--r-- 519 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
From HB Require Import structures.

HB.mixin Record X_of_Type Ω := {}.
HB.structure Definition X := {Ω of X_of_Type Ω}.

HB.instance Definition XProp := X_of_Type.Build Prop.
Definition prop := Prop.
HB.instance Definition Xprop := X_of_Type.Build prop.

HB.instance Definition XSet := X_of_Type.Build Set.
Definition set := Set.
HB.instance Definition Xset := X_of_Type.Build set.

HB.instance Definition XType := X_of_Type.Build Type.
Definition type := Type.
HB.instance Definition Xtype := X_of_Type.Build type.