Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir-def/src/path.rs')
-rw-r--r--crates/hir-def/src/path.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/crates/hir-def/src/path.rs b/crates/hir-def/src/path.rs
index 7af7e5574d..2f13a9fbf0 100644
--- a/crates/hir-def/src/path.rs
+++ b/crates/hir-def/src/path.rs
@@ -188,7 +188,10 @@ impl<'a> PathSegments<'a> {
}
impl GenericArgs {
- pub(crate) fn from_ast(lower_ctx: &LowerCtx<'_>, node: ast::GenericArgList) -> Option<GenericArgs> {
+ pub(crate) fn from_ast(
+ lower_ctx: &LowerCtx<'_>,
+ node: ast::GenericArgList,
+ ) -> Option<GenericArgs> {
lower::lower_generic_args(lower_ctx, node)
}