implicit-clone-derive 0.1.2

Immutable types and ImplicitClone trait similar to Copy
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[allow(dead_code)]
#[test]
fn tests_pass() {
    let t = trybuild::TestCases::new();
    t.pass("tests/function_component_attr/*-pass.rs");
}

#[allow(dead_code)]
#[rustversion::attr(stable(1.64), test)]
fn tests_fail() {
    let t = trybuild::TestCases::new();
    t.compile_fail("tests/function_component_attr/*-fail.rs");
}