提交 0e6b713d 编写于 作者: B bors

Auto merge of #52106 - PramodBisht:issue/52049, r=oli-obk

Don't suggest `let` bindings if they don't help with borrows

@oli-obk I have added a condition to address #52049, right now, this is on WIP because I think code change is also required on `error_reporting.rs`. Plus I need to check if any test cases fail.
I will ping you again if everything passes

r? @oli-obk
...@@ -1011,7 +1011,10 @@ fn report_bckerr(&self, err: &BckError<'a, 'tcx>) { ...@@ -1011,7 +1011,10 @@ fn report_bckerr(&self, err: &BckError<'a, 'tcx>) {
let node_id = scope.node_id(self.tcx, &self.region_scope_tree); let node_id = scope.node_id(self.tcx, &self.region_scope_tree);
match self.tcx.hir.find(node_id) { match self.tcx.hir.find(node_id) {
Some(hir_map::NodeStmt(_)) => { Some(hir_map::NodeStmt(_)) => {
db.note("consider using a `let` binding to increase its lifetime"); if *sub_scope != ty::ReStatic {
db.note("consider using a `let` binding to increase its lifetime");
}
} }
_ => {} _ => {}
} }
......
error[E0597]: borrowed value does not live long enough
--> $DIR/issue-52049.rs:16:10
|
LL | foo(&unpromotable(5u32));
| ^^^^^^^^^^^^^^^^^^ temporary value does not live long enough
LL | }
| - temporary value only lives until here
|
= note: borrowed value must be valid for the static lifetime...
error: aborting due to previous error
For more information about this error, try `rustc --explain E0597`.
// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
fn foo(_: &'static u32) {}
fn unpromotable<T>(t: T) -> T { t }
fn main() {
foo(&unpromotable(5u32));
}
//~^^ ERROR borrowed value does not live long enough
error[E0597]: borrowed value does not live long enough
--> $DIR/issue-52049.rs:16:10
|
LL | foo(&unpromotable(5u32));
| ^^^^^^^^^^^^^^^^^^ - temporary value only lives until here
| |
| temporary value does not live long enough
|
= note: borrowed value must be valid for the static lifetime...
error: aborting due to previous error
For more information about this error, try `rustc --explain E0597`.
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册