We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is a re-filing of #449, which apparently has not actually been fixed yet.
The bug is demonstrated by the following proof script:
Module Import tactics. Tactic Notation "simplify_eq" := idtac. End tactics. (* Our new tactic works just fine here. *) Goal True. Proof. simplify_eq. auto. Qed. From Equations Require Import Equations. (* Importing Equations has broken our tactic. *) Goal True. Proof. simplify_eq. auto. Qed.
This is with version 1.3.1+8.20 of the opam package.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is a re-filing of #449, which apparently has not actually been fixed yet.
The bug is demonstrated by the following proof script:
This is with version 1.3.1+8.20 of the opam package.
The text was updated successfully, but these errors were encountered: