summaryrefslogtreecommitdiffstats
path: root/tests/run-make/coverage/lib/doctest_crate.rs
blob: c3210146d69b0f9bc5c5a4580c2c1b740ef3c71c (plain)
1
2
3
4
5
6
7
8
9
/// A function run only from within doctests
pub fn fn_run_in_doctests(conditional: usize) {
    match conditional {
        1 => assert_eq!(1, 1), // this is run,
        2 => assert_eq!(1, 1), // this,
        3 => assert_eq!(1, 1), // and this too
        _ => assert_eq!(1, 2), // however this is not
    }
}