Skip to content

Commit

Permalink
Added UI testcases for #52049
Browse files Browse the repository at this point in the history
  • Loading branch information
PramodBisht committed Jul 7, 2018
1 parent d5f443d commit ab767ee
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/test/ui/suggestions/issue-52049.nll.stderr
@@ -0,0 +1,13 @@
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`.
18 changes: 18 additions & 0 deletions src/test/ui/suggestions/issue-52049.rs
@@ -0,0 +1,18 @@
// 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
13 changes: 13 additions & 0 deletions src/test/ui/suggestions/issue-52049.stderr
@@ -0,0 +1,13 @@
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`.

0 comments on commit ab767ee

Please sign in to comment.