Skip to content

Commit 3cd4df7

Browse files
committed
Add missing lifetime specifier
1 parent d28832d commit 3cd4df7

File tree

1 file changed

+1
-1
lines changed
  • src/librustc_data_structures/graph

1 file changed

+1
-1
lines changed

src/librustc_data_structures/graph/test.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ impl WithPredecessors for TestGraph {
5959
}
6060

6161
impl WithSuccessors for TestGraph {
62-
fn successors(&self, node: usize) -> <Self as GraphSuccessors>::Iter {
62+
fn successors(&self, node: usize) -> <Self as GraphSuccessors<'_>>::Iter {
6363
self.successors[&node].iter().cloned()
6464
}
6565
}

0 commit comments

Comments
 (0)