summaryrefslogtreecommitdiffstats
path: root/vendor/mdbook/tests/dummy_book/src/first/partially-included-test-with-anchors.rs
blob: 17b6afeffdd296dccd353a840df47d0a70b203b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
fn some_other_function() {
    // ANCHOR: unused-anchor-that-should-be-stripped
    assert!($TEST_STATUS);
    // ANCHOR_END: unused-anchor-that-should-be-stripped
}

// ANCHOR: rustdoc-include-anchor
fn main() {
    some_other_function();
}
// ANCHOR_END: rustdoc-include-anchor