mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-24 09:50:28 +00:00
26 lines
530 B
Rust
26 lines
530 B
Rust
#[macro_use]
|
|
extern crate darling;
|
|
extern crate syn;
|
|
|
|
use std::ops::Add;
|
|
|
|
#[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() {}
|