Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Test crate_with_duplicate_item_names

Source location: tests/basic_tests.rs:337

#[test]
fn crate_with_duplicate_item_names() {
    FormalityTest::new(crates![crate core {
        struct A {}

        enum A {}
    }])
    .err(expect_test::expect![[r#"
            the rule "check crate" at (mod.rs) failed because
              the item name `A` is defined multiple times"#]]);

    FormalityTest::new(crates![crate core {
        trait a {}

        trait a {}
    }])
    .err(expect_test::expect![[r#"
            the rule "check crate" at (mod.rs) failed because
              the trait name `a` is defined multiple times"#]]);

    FormalityTest::new(crates![crate core {
        fn a() -> () { trusted }

        fn a() -> () { trusted }
    }])
    .err(expect_test::expect![[r#"
            the rule "check crate" at (mod.rs) failed because
              the function name `a` is defined multiple times"#]]);

    FormalityTest::new(crates![crate core {
        trait a {}

        fn a() -> () { trusted }
    }])
    .skip_execute()
    .ok();
}

Rules proved (0)

This test records no positive coverage.

Premises failed (2)

The last column links to the premise’s page when the judgment view counts this failure against that premise. It does not when the premise is read as infallible, or when the failure was blamed inside a multi-line premise that carries no record on its own first line.

JudgmentRulePremiseAll tests of this premise
check_all_cratescheck all prefixesfor_all(i in 0..crates.len()) (let program = cra… (line 51, blamed at line 53)not counted by the judgment view
check_cratecheck cratecheck_for_duplicate_items(program) => () (line 70)6 tests

Proof trees

Failed proof tree