rustc-ap-rustc_data_structures 516.0.0

Automatically published version of the package `rustc_data_structures` in the rust-lang/rust repository from commit 0beb2ba16a08dfa01569b5f4644da315dc4c806c The publishing script for this crate lives at: https://github.com/alexcrichton/rustc-auto-publish
Documentation
1
2
3
4
5
6
7
8
9
10
11
use super::super::test::TestGraph;

use super::*;

#[test]
fn diamond_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]);
}