mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-13 00:17:13 +00:00
12 lines
379 B
Rust
12 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)* { }
|
||
|
};
|
||
|
}
|