Fix false positives
This commit is contained in:
parent
b35c04f7dc
commit
e6fa163fad
2 changed files with 27 additions and 0 deletions
|
|
@ -88,4 +88,30 @@ mod issue6437 {
|
|||
}
|
||||
}
|
||||
|
||||
// https://github.com/rust-lang/rust-clippy/pull/8737#pullrequestreview-951268213
|
||||
mod first_case {
|
||||
use serde::de::Visitor;
|
||||
pub trait Expected {
|
||||
fn fmt(&self, formatter: &mut std::fmt::Formatter);
|
||||
}
|
||||
|
||||
impl<'de, T> Expected for T
|
||||
where
|
||||
T: Visitor<'de>,
|
||||
{
|
||||
fn fmt(&self, formatter: &mut std::fmt::Formatter) {}
|
||||
}
|
||||
}
|
||||
|
||||
// https://github.com/rust-lang/rust-clippy/pull/8737#pullrequestreview-951268213
|
||||
mod second_case {
|
||||
pub trait Source {
|
||||
fn hey();
|
||||
}
|
||||
|
||||
impl<'a, T: Source + ?Sized + 'a> Source for Box<T> {
|
||||
fn hey() {}
|
||||
}
|
||||
}
|
||||
|
||||
fn main() {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue