aboutsummaryrefslogtreecommitdiff
path: root/crates/hir_def
diff options
context:
space:
mode:
authorDawer <[email protected]>2021-04-29 19:28:43 +0100
committerDawer <[email protected]>2021-05-31 20:03:46 +0100
commit678d85ca7e4d7e631a450b8c050fe7696da0cac3 (patch)
treef013655d9c581959ebd5a2db83d6fea91005fdb6 /crates/hir_def
parent062c7953a12bf849db641d14d8d26af47ddca79e (diff)
Implement struct ctor application
Diffstat (limited to 'crates/hir_def')
-rw-r--r--crates/hir_def/src/path.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/hir_def/src/path.rs b/crates/hir_def/src/path.rs
index 16440041d..4cdb5913d 100644
--- a/crates/hir_def/src/path.rs
+++ b/crates/hir_def/src/path.rs
@@ -166,7 +166,7 @@ impl Path {
166 } 166 }
167 167
168 /// Converts a known mod path to `Path`. 168 /// Converts a known mod path to `Path`.
169 pub(crate) fn from_known_path( 169 pub fn from_known_path(
170 path: ModPath, 170 path: ModPath,
171 generic_args: Vec<Option<Interned<GenericArgs>>>, 171 generic_args: Vec<Option<Interned<GenericArgs>>>,
172 ) -> Path { 172 ) -> Path {