summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/derive-clone-for-eq.rs
blob: 99956ed9879d5d7fa339356c6b07b79bbdc921d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// run-rustfix
// https://github.com/rust-lang/rust/issues/79076

#[derive(Clone, Eq)] //~ ERROR [E0277]
pub struct Struct<T>(T);

impl<T: Clone, U> PartialEq<U> for Struct<T>
where
    U: Into<Struct<T>> + Clone
{
    fn eq(&self, _other: &U) -> bool {
        todo!()
    }
}

fn main() {}