1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
extern crate monomo_macros;
pub use monomo_macros::*;

#[cfg(test)]
mod tests {
    use crate::*;

    trait Foo<T> {}
    struct B;

    rphize!(Foo<i32>);

    #[rphize_impl]
    impl Foo<i32> for B {}
}