We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7496539 commit 21a5663Copy full SHA for 21a5663
src/test/compile-fail/issue-16747.rs
@@ -18,11 +18,10 @@ trait Collection { fn len(&self) -> usize; }
18
19
struct List<'a, T: ListItem<'a>> {
20
//~^ ERROR the parameter type `T` may not live long enough
21
-//~^^ HELP consider adding an explicit lifetime bound
22
-//~^^^ NOTE ...so that the reference type `&'a [T]` does not outlive the data it points at
+//~^^ NOTE ...so that the reference type `&'a [T]` does not outlive the data it points at
23
slice: &'a [T]
24
}
25
-
+//~^ HELP consider adding an explicit lifetime bound
26
impl<'a, T: ListItem<'a>> Collection for List<'a, T> {
27
fn len(&self) -> usize {
28
0
0 commit comments