fix new clippy warnings

This commit is contained in:
Folkert 2020-03-12 22:56:58 +01:00
parent 4da01c720e
commit f02193b962
3 changed files with 11 additions and 5 deletions

View file

@ -1048,8 +1048,11 @@ fn parse_and_constrain(
(module, ident_ids, constraint, problems)
}
Err(_runtime_error) => {
panic!("TODO gracefully handle module canonicalization error");
Err(runtime_error) => {
panic!(
"TODO gracefully handle module canonicalization error {:?}",
runtime_error
);
}
};