Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir-ty/src/infer.rs')
| -rw-r--r-- | crates/hir-ty/src/infer.rs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/crates/hir-ty/src/infer.rs b/crates/hir-ty/src/infer.rs index 2cb6666672..bd00da84ca 100644 --- a/crates/hir-ty/src/infer.rs +++ b/crates/hir-ty/src/infer.rs @@ -2637,11 +2637,6 @@ impl<'db> InferenceContext<'db> { } } - fn resolve_boxed_box(&self) -> Option<AdtId> { - let struct_ = self.lang_items.OwnedBox?; - Some(struct_.into()) - } - fn resolve_range_full(&self) -> Option<AdtId> { let struct_ = self.lang_items.RangeFull?; Some(struct_.into()) |