summaryrefslogtreecommitdiffstats
path: root/vendor/darling-0.14.4/tests/custom_bound.rs
blob: 312f147805c3dc054abe9a9a9cb907d9e3379968 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#![allow(dead_code)]

use std::ops::Add;

use darling::{FromDeriveInput, FromMeta};

#[derive(Debug, Clone, FromMeta)]
#[darling(bound = "T: FromMeta + Add")]
struct Wrapper<T>(pub T);

impl<T: Add> Add for Wrapper<T> {
    type Output = Wrapper<<T as Add>::Output>;
    fn add(self, rhs: Self) -> Wrapper<<T as Add>::Output> {
        Wrapper(self.0 + rhs.0)
    }
}

#[derive(Debug, FromDeriveInput)]
#[darling(attributes(hello), bound = "Wrapper<T>: Add, T: FromMeta")]
struct Foo<T> {
    lorem: Wrapper<T>,
}

#[test]
fn expansion() {}