mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
de7749832c
Skip linting if the type is from an external macro. Closes #4260.
6 lines
118 B
Rust
6 lines
118 B
Rust
#[macro_export]
|
|
macro_rules! implicit_hasher_fn {
|
|
() => {
|
|
pub fn f(input: &HashMap<u32, u32>) {}
|
|
};
|
|
}
|