]> git.proxmox.com Git - rustc.git/blobdiff - compiler/rustc_data_structures/src/graph/mod.rs
New upstream version 1.57.0+dfsg1
[rustc.git] / compiler / rustc_data_structures / src / graph / mod.rs
index dff22855629a8e4b9f93f6b7e7041a56b415ba2b..3560df6e5e204548dc2966179e26052d90298bfb 100644 (file)
@@ -32,7 +32,7 @@ where
     where
         Self: WithNumNodes,
     {
-        iterate::DepthFirstSearch::new(selffrom)
+        iterate::DepthFirstSearch::new(self).with_start_node(from)
     }
 }