Skip to content
Snippets Groups Projects
Commit 4172cacd authored by Ralf Jung's avatar Ralf Jung
Browse files

work around Coq bug 5401 breaking 'Print HintDb typeclass_instances'

parent 4a154f08
No related branches found
No related tags found
No related merge requests found
......@@ -40,10 +40,10 @@ Section proper.
Context {A : ofeT}.
Global Instance vcons_ne n :
Proper (dist n ==> forall_relation (λ _, dist n ==> dist n)) (@vcons A).
Proper (dist n ==> forall_relation (λ x, dist n ==> dist n)) (@vcons A).
Proof. by constructor. Qed.
Global Instance vcons_proper :
Proper (equiv ==> forall_relation (λ _, equiv ==> equiv)) (@vcons A).
Proper (equiv ==> forall_relation (λ x, equiv ==> equiv)) (@vcons A).
Proof. by constructor. Qed.
Global Instance vlookup_ne n m :
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment