diff --git a/src/check_ast.rs b/src/check_ast.rs index 4d5e875032..c775ad9b99 100644 --- a/src/check_ast.rs +++ b/src/check_ast.rs @@ -472,7 +472,7 @@ where let binding = Binding { kind: BindingKind::Importation(match module { None => name.clone(), - Some(parent) => format!("{}.{}", parent, name.clone()), + Some(parent) => format!("{}.{}", parent, name), }), used: None, location: stmt.location,