mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-29 02:03:53 +00:00
18 lines
313 B
Rust
18 lines
313 B
Rust
//@ run-rustfix
|
|
// https://github.com/rust-lang/rust/issues/79076
|
|
|
|
#[allow(dead_code)]
|
|
#[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() {}
|