-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |