summary refs log tree commit diff
path: root/src/test/compile-fail
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2017-09-27 22:00:11 +0000
committerbors <bors@rust-lang.org>2017-09-27 22:00:11 +0000
commit44d5090a6dbfbcd698ec53ef38981d9747112e0a (patch)
tree98ed0601b49109869a317e515d42629d3c5d1c9c /src/test/compile-fail
parent0e6f4cf51cd3b799fb057956f8e733d16605d09b (diff)
parentddee9fbc998e345e9a36f2066d51d389aa31a632 (diff)
downloadrust-44d5090a6dbfbcd698ec53ef38981d9747112e0a.tar.gz
rust-44d5090a6dbfbcd698ec53ef38981d9747112e0a.zip
Auto merge of #44782 - estebank:issue-36700, r=GuillaumeGomez
Point at parameter type on E0301

On "the parameter type `T` may not live long enough" error, point to the
parameter type suggesting lifetime bindings:

```
error[E0310]: the parameter type `T` may not live long enough
  --> $DIR/lifetime-doesnt-live-long-enough.rs:28:5
   |
27 | struct Foo<T> {
   |            - help: consider adding an explicit lifetime bound `T: 'static`...
28 |     foo: &'static T
   |     ^^^^^^^^^^^^^^^
   |
note: ...so that the reference type `&'static T` does not outlive the data it points at
  --> $DIR/lifetime-doesnt-live-long-enough.rs:28:5
   |
28 |     foo: &'static T
   |     ^^^^^^^^^^^^^^^
```

Fix #36700.
Diffstat (limited to 'src/test/compile-fail')
-rw-r--r--src/test/compile-fail/issue-16747.rs29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/test/compile-fail/issue-16747.rs b/src/test/compile-fail/issue-16747.rs
deleted file mode 100644
index dd7e8a869ec..00000000000
--- a/src/test/compile-fail/issue-16747.rs
+++ /dev/null
@@ -1,29 +0,0 @@
-// Copyright 2014 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.
-
-trait ListItem<'a> {
-    fn list_name() -> &'a str;
-}
-
-trait Collection { fn len(&self) -> usize; }
-
-struct List<'a, T: ListItem<'a>> {
-    slice: &'a [T]
-//~^ ERROR the parameter type `T` may not live long enough
-//~| HELP consider adding an explicit lifetime bound
-//~| NOTE ...so that the reference type `&'a [T]` does not outlive the data it points at
-}
-impl<'a, T: ListItem<'a>> Collection for List<'a, T> {
-    fn len(&self) -> usize {
-        0
-    }
-}
-
-fn main() {}