Merge commit '99718d0c8b' into sync-from-ra

This commit is contained in:
Laurențiu Nicola 2023-07-24 12:21:34 +03:00
parent 4704881b64
commit 0155385b57
60 changed files with 714 additions and 402 deletions

View file

@ -30,7 +30,7 @@ fn eval_main(db: &TestDB, file_id: FileId) -> Result<(String, String), MirEvalEr
db.trait_environment(func_id.into()),
)
.map_err(|e| MirEvalError::MirLowerError(func_id.into(), e))?;
let (result, stdout, stderr) = interpret_mir(db, body, false);
let (result, stdout, stderr) = interpret_mir(db, body, false, None);
result?;
Ok((stdout, stderr))
}