Automatically published version of the package `rustc_data_structures` in the rust-lang/rust repository from commit f573049729ca7f4a4977e48467156d7fc8b13f62 The publishing script for this crate lives at: https://github.com/alexcrichton/rustc-auto-publish
usesuper::super::test::TestGraph;usesuper::*;#[test]fndiamond_post_order(){let graph =TestGraph::new(0,&[(0,1),(0,2),(1,3),(2,3)]);let result =post_order_from(&graph,0);assert_eq!(result,vec![3,1,2,0]);}