diff options
author | Dawer <[email protected]> | 2021-04-29 19:28:43 +0100 |
---|---|---|
committer | Dawer <[email protected]> | 2021-05-31 20:03:46 +0100 |
commit | 678d85ca7e4d7e631a450b8c050fe7696da0cac3 (patch) | |
tree | f013655d9c581959ebd5a2db83d6fea91005fdb6 /crates/hir_def/src/path.rs | |
parent | 062c7953a12bf849db641d14d8d26af47ddca79e (diff) |
Implement struct ctor application
Diffstat (limited to 'crates/hir_def/src/path.rs')
-rw-r--r-- | crates/hir_def/src/path.rs | 2 |
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 { |