This commit is contained in:
Duncan Proctor 2024-10-22 03:19:47 -04:00
parent f54a863965
commit 2f6923b844
2 changed files with 27 additions and 15 deletions

View file

@ -363,7 +363,7 @@ impl SourceAnalyzer {
// [E0586] inclusive ranges must be bounded at the end
(RangeOp::Inclusive, None, None) => return None,
(RangeOp::Inclusive, Some(_), None) => return None
(RangeOp::Inclusive, Some(_), None) => return None,
};
self.resolver.resolve_known_struct(db.upcast(), &path)
}