mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
17 lines
325 B
Rust
17 lines
325 B
Rust
#![allow(unused)]
|
|
#![warn(clippy::impl_trait_in_params)]
|
|
|
|
pub trait Trait {}
|
|
pub trait AnotherTrait<T> {}
|
|
|
|
// Should warn
|
|
pub fn a(_: impl Trait) {}
|
|
pub fn c<C: Trait>(_: C, _: impl Trait) {}
|
|
fn d(_: impl AnotherTrait<u32>) {}
|
|
|
|
// Shouldn't warn
|
|
|
|
pub fn b<B: Trait>(_: B) {}
|
|
fn e<T: AnotherTrait<u32>>(_: T) {}
|
|
|
|
fn main() {}
|