rust/compiler/rustc_infer/src/infer/region_constraints
LegionMammal978 375524014f Remove in_band_lifetimes from rustc_infer
This crate actually had a typo `'ctx` in one of its functions:
```diff
-pub fn same_type_modulo_infer(a: Ty<'tcx>, b: Ty<'ctx>) -> bool {
+pub fn same_type_modulo_infer<'tcx>(a: Ty<'tcx>, b: Ty<'tcx>) -> bool {
```
2021-12-13 17:53:27 -05:00
..
leak_check.rs
mod.rs Remove in_band_lifetimes from rustc_infer 2021-12-13 17:53:27 -05:00
README.md

For info on how the current borrowck works, see the rustc dev guide.