File: bug_5243.v

package info (click to toggle)
coq 8.20.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 44,116 kB
  • sloc: ml: 234,160; sh: 4,301; python: 3,270; ansic: 2,644; makefile: 882; lisp: 172; javascript: 63; xml: 24; sed: 2
file content (38 lines) | stat: -rw-r--r-- 690 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
Typeclasses eauto := debug.

Class Foo A := foo : A.

Hint Extern 0 (Foo _) => lazy beta delta; give_up : typeclass_instances.

Lemma t A : A.
  notypeclasses refine ((_ : Foo A)).
  typeclasses eauto.

(*
No more subgoals, but there are some goals you gave up:

A

You need to go back and solve them.
*)

Abort.

Lemma t A : A.
  refine ((_ : Foo A)).

(*
1: looking for (Foo A) without backtracking
1.1: (*external*) (lazy beta delta; give_up) on
(Foo A), 0 subgoal(s)
leaking evar 10
A

Anomaly:
File "tactics/class_tactics.ml", line 1345, characters 11-17: Assertion failed.
Please report at http://coq.inria.fr/bugs/.
 *)
  Unshelve.
  all:fail. (* no more goals *)
  Fail Qed.
Abort.