21 lines
520 B
Rust
21 lines
520 B
Rust
#![allow(unused)]
|
|
#![warn(clippy::impl_trait_in_params)]
|
|
//@no-rustfix
|
|
pub trait Trait {}
|
|
pub trait AnotherTrait<T> {}
|
|
|
|
// Should warn
|
|
pub fn a(_: impl Trait) {}
|
|
//~^ ERROR: '`impl Trait` used as a function parameter'
|
|
//~| NOTE: `-D clippy::impl-trait-in-params` implied by `-D warnings`
|
|
pub fn c<C: Trait>(_: C, _: impl Trait) {}
|
|
//~^ ERROR: '`impl Trait` used as a function parameter'
|
|
fn d(_: impl AnotherTrait<u32>) {}
|
|
|
|
// Shouldn't warn
|
|
|
|
pub fn b<B: Trait>(_: B) {}
|
|
fn e<T: AnotherTrait<u32>>(_: T) {}
|
|
|
|
fn main() {}
|