mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 11:50:45 +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() {
|
|
}
|