variadics 0.1.0

Variadic generics on stable Rust using tuple lists
Documentation
1
2
3
4
5
6
7
8
9
#[test]
fn test_all() {
    let t = trybuild::TestCases::new();
    #[cfg(nightly)]
    let path = "tests/compile-fail-nightly/*.rs";
    #[cfg(not(nightly))]
    let path = "tests/compile-fail/*.rs";
    t.compile_fail(path);
}