Get rid of Rust warnings in repl_expect on Windows

This commit is contained in:
Brian Carroll 2022-08-26 08:40:24 +01:00
parent 6bae249a71
commit 601090b0bb
No known key found for this signature in database
GPG key ID: 9CF4E3BF9C4722C7

View file

@ -1,15 +1,18 @@
use roc_module::symbol::Interns;
use roc_mono::{
ir::ProcLayout,
layout::{CapturesNiche, LayoutCache},
#[cfg(not(windows))]
use {
roc_module::symbol::Interns,
roc_mono::{
ir::ProcLayout,
layout::{CapturesNiche, LayoutCache},
},
roc_parse::ast::Expr,
roc_repl_eval::{
eval::{jit_to_ast, ToAstProblem},
ReplAppMemory,
},
roc_target::TargetInfo,
roc_types::subs::{Subs, Variable},
};
use roc_parse::ast::Expr;
use roc_repl_eval::{
eval::{jit_to_ast, ToAstProblem},
ReplAppMemory,
};
use roc_target::TargetInfo;
use roc_types::subs::{Subs, Variable};
#[cfg(not(windows))]
mod app;