aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir_ty/src/op.rs
Commit message (Collapse)AuthorAgeFilesLines
* infer: Make expected rhs type for plain assign the lhs typeEmil Lauridsen2020-05-101-1/+2
| | | | | | | | | | | | | This fixes an issue where the following code sample would fail to infer the type contained in the option: ```rust fn main() { let mut end = None; // TODO: Fix inference for this in RA loop { end = Some(true); } } ```
* More manual clippy fixesKirill Bulatov2020-02-181-13/+11
|
* Fix inference for shift operatorsFlorian Diebold2020-01-171-3/+12
| | | | Fixes #2602.
* Move TyAleksey Kladov2019-11-271-0/+50