Coq-Equations icon indicating copy to clipboard operation
Coq-Equations copied to clipboard

Notation conflict with standard library

Open jwiegley opened this issue 2 years ago • 1 comments

If you import Equations.Prop.DepElim, you cannot also import Coq.QArith.QArith. The former defines:

Notation "p # t" := (transport _ p t) (right associativity, at level 65) : equations_scope.

while the latter defines:

Notation "a # b" := (Qmake a b) (at level 55, no associativity) : Q_scope.

jwiegley avatar Jul 28 '22 00:07 jwiegley

Hmm, we should use a Module then.

mattam82 avatar Sep 19 '22 10:09 mattam82