]> git.lizzy.rs Git - rust.git/blobdiff - compiler/rustc_hir_typeck/src/demand.rs
Auto merge of #106711 - albertlarsan68:use-ci-llvm-when-lld, r=jyn514
[rust.git] / compiler / rustc_hir_typeck / src / demand.rs
index 33fc7413a679cd2eadc94cb313fe46cd0db3a025..6c128d0aa1a658ffa149a45c995d75d0c3b3c555 100644 (file)
@@ -1855,7 +1855,7 @@ pub fn check_for_range_as_method_call(
         let mut expectation = Some(expected_ty);
         while let hir::ExprKind::MethodCall(_, rcvr, ..) = expr.kind {
             // Getting to the root receiver and asserting it is a fn call let's us ignore cases in
-            // `src/test/ui/methods/issues/issue-90315.stderr`.
+            // `tests/ui/methods/issues/issue-90315.stderr`.
             expr = rcvr;
             // If we have more than one layer of calls, then the expected ty
             // cannot guide the method probe.