File: trait_bound_not_added.rs

package info (click to toggle)
rust-impl-trait-for-tuples 0.2.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 352 kB
  • sloc: makefile: 2
file content (21 lines) | stat: -rw-r--r-- 340 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
trait Test {
    fn test();
}

#[impl_trait_for_tuples::impl_for_tuples(5)]
#[tuple_types_no_default_trait_bound]
impl Test for Tuple {
    fn test() {
        for_tuples!( #( Tuple::test(); )* )
    }
}

struct Impl;

impl Test for Impl {}

fn test<T: Test>() {}
fn main() {
    test::<(Impl, Impl)>();
    test::<(Impl, Impl, Impl)>();
}