Open fpottier opened 1 year ago
@coqbot: minimize
#!/usr/bin/env bash
opam install -y coq-stdpp
eval $(opam env)
wget 'https://github.com/coq/coq/files/11050326/bug2.tar.gz'
tar -xf bug2.tar.gz
cd bug2
make
Hey @SkySkimmer, the coq bug minimizer is running your script, I'll come back to you with the results once it's done.
@SkySkimmer, Minimized File /github/workspace/bug2/theories/examples.v (full log on GitHub Actions)
build.log
)bug.log
)If you have any comments on your experience of the minimizer, please share them in a reply (possibly tagging @JasonGross
).
If you believe there's a bug in the bug minimizer, please report it on the bug minimizer issue tracker.
The instantiate
in
Ltac wp_set_postcondition :=
match goal with |- ?φ ?v =>
is_evar φ;
instantiate (1 := λ v', v' = v);
reflexivity
end.
is combining with https://github.com/coq/coq/issues?q=label%3A%22wellknown%3A+ltac+variable+bypasses+typechecking%22
Description of the problem
The attached project ends with a use of the tactic
simpl
that causesAnomaly "Uncaught exception Not_found."
. Usemake
to compile. The project depends oncoq-stdpp
. bug2.tar.gzCoq Version
8.16.1