mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 00:34:06 +00:00
13 lines
188 B
Rust
13 lines
188 B
Rust
|
trait DynEq {}
|
||
|
|
||
|
impl<'a> PartialEq for &'a (dyn DynEq + 'static) {
|
||
|
fn eq(&self, _other: &Self) -> bool {
|
||
|
true
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl Eq for &dyn DynEq {} //~ ERROR E0308
|
||
|
|
||
|
fn main() {
|
||
|
}
|