From 75cef24ee0e14ff38b4ee210102960d9ee66a358 Mon Sep 17 00:00:00 2001 From: ayazhafiz Date: Sun, 27 Feb 2022 00:14:05 -0500 Subject: [PATCH] Fix repl compile after rebase --- repl_eval/src/eval.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repl_eval/src/eval.rs b/repl_eval/src/eval.rs index 8d5bfee2b1..2cfedba801 100644 --- a/repl_eval/src/eval.rs +++ b/repl_eval/src/eval.rs @@ -115,7 +115,7 @@ fn unroll_newtypes<'a>( let field_var = *field.as_inner(); content = env.subs.get_content_without_compacting(field_var); } - Content::Alias(_, _, real_var) => { + Content::Alias(_, _, real_var, _) => { // We need to pass through aliases too, because their underlying types may have // unrolled newtypes. In such cases return the list of unrolled newtypes, but keep // the content as the alias for readability. For example,