summaryrefslogtreecommitdiff
path: root/test-suite/bugs/opened/1811.v
blob: 57c1744313793b23307b0f2161ab9c394ca89c72 (plain)
1
2
3
4
5
6
7
8
9
10
Require Export Bool.

Lemma neg2xor : forall b, xorb true b = negb b.
Proof. auto. Qed.

Goal forall b1 b2, (negb b1 = b2)  ->  xorb true b1 = b2.
Proof.
  intros b1 b2.
  Fail rewrite neg2xor.
Abort.