summaryrefslogtreecommitdiff
path: root/compiler/Interpreter.ml
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/Interpreter.ml')
-rw-r--r--compiler/Interpreter.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/Interpreter.ml b/compiler/Interpreter.ml
index bc28bcd6..b1178aa7 100644
--- a/compiler/Interpreter.ml
+++ b/compiler/Interpreter.ml
@@ -74,7 +74,7 @@ let symbolic_instantiate_fun_sig (ctx : C.eval_ctx) (sg : A.fun_sig)
let types = List.map (fun (v : T.type_var) -> T.TypeVar v.T.index) types in
let const_generics =
List.map
- (fun (v : T.const_generic_var) -> T.ConstGenericVar v.T.index)
+ (fun (v : T.const_generic_var) -> T.CGVar v.T.index)
const_generics
in
(* Annoying that we have to generate this substitution here *)