aboutsummaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/shouldsucceed/1604.v
blob: 2d0991cb12be4b6b0aed03778c645fb27f31dd31 (plain)
1
2
3
4
5
6
7
Require Import Setoid.

Parameter F : nat -> nat.
Axiom F_id : forall n : nat, n = F n.
Goal forall n : nat, F n = n.
intro n. setoid_rewrite F_id at 2. reflexivity.
Qed.