auto-delegate 0.1.3

Auto delegate allows you that automatic impl of traits and delegate their handling to child members.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![allow(unused)]

mod test01_method_with_args;
mod test02_tuple;
mod test03_reference;

fn main() {
    let t = trybuild::TestCases::new();
    t.pass("tests/args/test01_method_with_args.rs");
    t.pass("tests/args/test02_tuple.rs");
    t.pass("tests/args/test03_reference.rs");
    t.pass("tests/args/test04_slice.rs");
}