aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Reflection/InputSyntax.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Reflection/InputSyntax.v b/src/Reflection/InputSyntax.v
index 42ac17069..258241391 100644
--- a/src/Reflection/InputSyntax.v
+++ b/src/Reflection/InputSyntax.v
@@ -58,7 +58,7 @@ Section language.
end.
Fixpoint interp {t} (e : @expr interp_flat_type t) : interp_type t
:= match e in expr t return interp_type t with
- | Return _ x => interpf x
+ | Return _ v => interpf v
| Abs _ _ f => fun x => @interp _ (f x)
end.