impl-tools 0.11.4

Helper macros: autoimpl
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[test]
fn compile_errors() {
    let t = trybuild::TestCases::new();
    t.compile_fail("compile-errors/common/*.rs");

    #[cfg(feature = "nightly-diagnostics")]
    t.compile_fail("compile-errors/nightly/*.rs");

    #[cfg(not(feature = "nightly-diagnostics"))]
    t.compile_fail("compile-errors/stable/*.rs");
}