1
0
Fork 0
firefox/third_party/rust/darling/tests/custom_bound.rs
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

25 lines
541 B
Rust

#![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() {}