aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Compilers/Intros.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Compilers/Intros.v b/src/Compilers/Intros.v
index 24c8f8a01..e51c9c2fa 100644
--- a/src/Compilers/Intros.v
+++ b/src/Compilers/Intros.v
@@ -89,6 +89,6 @@ Ltac intro_interp_flat_type :=
lazymatch goal with
| [ |- forall v : interp_flat_type ?var ?t, @?R v ]
=> let t' := (eval compute in t) in
- refine (@intros_interp_flat_type _ var (fun v => id (R v)) t' _);
+ refine (@intros_interp_flat_type _ var t' (fun v => id (R v)) _);
post_intro_interp_flat_type_intros
end.