confik-macros 0.15.3

Macros for confik
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[test]
fn macro_pass() {
    let t = trybuild::TestCases::new();
    t.pass("tests/trybuild/compile-pass/*.rs");
}

// only run on MSRV to avoid changes to compiler output causing CI failures
#[rustversion_msrv::msrv]
#[test]
fn macro_fail() {
    let t = trybuild::TestCases::new();
    t.compile_fail("tests/trybuild/compile-fail/*.rs");
}