-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1068 from MetaCoq/fix-1042
Fix issue #1042 MetaCoq Run does not support evars.
- Loading branch information
Showing
3 changed files
with
48 additions
and
19 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
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
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,28 @@ | ||
From MetaCoq.Utils Require Import utils. | ||
From MetaCoq.Template Require Import All. | ||
Import MCMonadNotation. | ||
|
||
|
||
(*Exemple with a typing error*) | ||
Definition ident_term (a : term) : term := a. | ||
|
||
Definition quote_inductive {X}(inductive:X): TemplateMonad _ := | ||
quote <- tmQuote inductive;; | ||
tmReturn quote. | ||
|
||
Inductive tm : Set := . | ||
|
||
Definition d1 : TemplateMonad unit. | ||
(* Set Debug "backtrace". *) | ||
Fail MetaCoq Run( | ||
quote <- quote_inductive tm;; | ||
constructor <- ident_term quote;; | ||
tmPrint constructor) | ||
. | ||
Fail run_template_program (quote <- quote_inductive tm;; | ||
constructor <- ident_term quote;; | ||
tmPrint constructor) ltac:(fun x => idtac). | ||
Fail refine ( | ||
quote <- quote_inductive tm;; | ||
constructor <- ident_term quote;; | ||
tmPrint constructor). |