summaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/5093.v
blob: 3ded4dd304a3dd40fa976571c42ef4679cb9f8d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
Axiom P : nat -> Prop.
Axiom PS : forall n, P n -> P (S n).
Axiom P0 : P 0.

Hint Resolve PS : foobar.
Hint Resolve P0 : foobar.

Goal P 100.
Proof.
Fail typeclasses eauto 100 with foobar.
typeclasses eauto 101 with foobar.