mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
9 lines
187 B
Rust
9 lines
187 B
Rust
//@no-rustfix
|
|
|
|
#![warn(clippy::impl_trait_in_params)]
|
|
|
|
pub fn g<T: IntoIterator<Item = impl Iterator<Item = impl Clone>>>() {
|
|
extern "C" fn implementation_detail() {}
|
|
}
|
|
|
|
fn main() {}
|