aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/typeclasses
diff options
context:
space:
mode:
authorGravatar Matthieu Sozeau <matthieu.sozeau@inria.fr>2014-09-12 16:58:37 +0200
committerGravatar Matthieu Sozeau <matthieu.sozeau@inria.fr>2014-09-12 16:59:53 +0200
commite4aa9817115b3d27eb7fca8fed86ffe397b868ad (patch)
treeefa8a3250bffa0a6fd7ac7d8c0f07ee17bc53734 /test-suite/typeclasses
parent5dc8187aa8e6b481338035a022fec4025a25eb33 (diff)
While we don't have a clean alternative to Clenvtac, add a primitive
for tclEVARS which might solve existing goals.
Diffstat (limited to 'test-suite/typeclasses')
-rw-r--r--test-suite/typeclasses/deftwice.v9
1 files changed, 9 insertions, 0 deletions
diff --git a/test-suite/typeclasses/deftwice.v b/test-suite/typeclasses/deftwice.v
new file mode 100644
index 000000000..439782c9e
--- /dev/null
+++ b/test-suite/typeclasses/deftwice.v
@@ -0,0 +1,9 @@
+Class C (A : Type) := c : A -> Type.
+
+Record Inhab (A : Type) := { witness : A }.
+
+Instance inhab_C : C Type := Inhab.
+
+Variable full : forall A (X : C A), forall x : A, c x.
+
+Definition truc {A : Type} : Inhab A := (full _ _ _). \ No newline at end of file