mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
11 lines
379 B
Rust
11 lines
379 B
Rust
pub trait A {}
|
|
|
|
macro_rules! __implicit_hasher_test_macro {
|
|
(impl< $($impl_arg:tt),* > for $kind:ty where $($bounds:tt)*) => {
|
|
__implicit_hasher_test_macro!( ($($impl_arg),*) ($kind) ($($bounds)*) );
|
|
};
|
|
|
|
(($($impl_arg:tt)*) ($($kind_arg:tt)*) ($($bounds:tt)*)) => {
|
|
impl< $($impl_arg)* > test_macro::A for $($kind_arg)* where $($bounds)* { }
|
|
};
|
|
}
|