aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Jason Gross <jgross@mit.edu>2017-11-17 20:01:09 -0500
committerGravatar Jason Gross <jgross@mit.edu>2017-11-17 20:01:09 -0500
commit0d68c007fe0ea485cc2296d52579c83bcea58a05 (patch)
tree881a4dee62eb1c7342c4d454a027c8367cdda87a /src
parent668ea5d4857ef81fc6bb8e83161c4590398c7ca0 (diff)
Fix an argument order issue
Diffstat (limited to 'src')
-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.