mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-09 21:42:44 +00:00
7 lines
118 B
Rust
7 lines
118 B
Rust
#[macro_export]
|
|
macro_rules! implicit_hasher_fn {
|
|
() => {
|
|
pub fn f(input: &HashMap<u32, u32>) {}
|
|
};
|
|
}
|