Skip to content

Commit 21a5663

Browse files
Manishearthivanradanov
authored andcommitted
Move span in error (fixup #22764)
1 parent 7496539 commit 21a5663

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/test/compile-fail/issue-16747.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,10 @@ trait Collection { fn len(&self) -> usize; }
1818

1919
struct List<'a, T: ListItem<'a>> {
2020
//~^ 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
21+
//~^^ NOTE ...so that the reference type `&'a [T]` does not outlive the data it points at
2322
slice: &'a [T]
2423
}
25-
24+
//~^ HELP consider adding an explicit lifetime bound
2625
impl<'a, T: ListItem<'a>> Collection for List<'a, T> {
2726
fn len(&self) -> usize {
2827
0

0 commit comments

Comments
 (0)