Skip to content

Commit

Permalink
[limits] Add example from #484
Browse files Browse the repository at this point in the history
  • Loading branch information
ejgallego committed May 10, 2024
1 parent 59a859a commit f2c31e9
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions examples/int_tc_loop.v
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
(* From https://github.com/ejgallego/coq-lsp/issues/484, thanks ! *)
From Coq Require Import Prelude.

Axiom Loop : Type.
Existing Class Loop.

Axiom loop : Loop -> Loop.
#[export] Existing Instance loop.

Global Instance foo : Loop.
Proof. Admitted.

Goal Loop.
exact _.

(* Some extra content as to test goals here *)
Lemma foo : True.
Proof.

Qed.

0 comments on commit f2c31e9

Please sign in to comment.