Skip to content

Commit 1923084

Browse files
committed
Fix test-suite file after cherry-pick
1 parent 39a72a7 commit 1923084

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

test-suite/unquote_evars.v

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
From MetaCoq.Template Require Import All.
2-
Import MCMonadNotation.
1+
From MetaRocq.Template Require Import All.
2+
Import MRMonadNotation.
33

44
(* Unquoting evars. *)
5-
MetaCoq Run (mlet t <- tmUnquote (tEvar fresh_evar_id []) ;; tmPrint t).
6-
MetaCoq Run (mlet t <- tmUnquoteTyped nat (tEvar fresh_evar_id []) ;; tmPrint t).
5+
MetaRocq Run (mlet t <- tmUnquote (tEvar fresh_evar_id []) ;; tmPrint t).
6+
MetaRocq Run (mlet t <- tmUnquoteTyped nat (tEvar fresh_evar_id []) ;; tmPrint t).
77

88
(* Unquoting evars, with typeclass resolution. *)
99
Existing Class nat.
1010
Existing Instance O.
1111

12-
MetaCoq Quote Definition quoted_nat := nat.
13-
MetaCoq Run (
12+
MetaRocq Quote Definition quoted_nat := nat.
13+
MetaRocq Run (
1414
mlet t <- tmUnquote (tCast (tEvar fresh_evar_id []) Cast quoted_nat) ;;
1515
tmEval cbv t
1616
).
17-
MetaCoq Run (
17+
MetaRocq Run (
1818
mlet t <- tmUnquoteTyped nat (tEvar fresh_evar_id []) ;;
1919
tmEval cbv t
2020
).

0 commit comments

Comments
 (0)