mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
9 lines
198 B
Rust
9 lines
198 B
Rust
pub struct S<'a, 'e>(&'a str, &'e str);
|
|
|
|
pub type T<'a, 'e> = std::collections::HashMap<S<'a, 'e>, ()>;
|
|
|
|
impl<'e, 'a: 'e> S<'a, 'e> {
|
|
pub fn foo(_a: &str, _b: &str, _map: &T) {}
|
|
}
|
|
|
|
fn main() {}
|