Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
missing
/
missing-derivable-attr.rs
blob: 58c94de5059930f5d86c35f13fa07ed6ed6d3800 [
file
] [
log
] [
blame
] [
edit
]
trait
MyEq
{
fn
eq
(&
self
,
other
:
&
Self
)
->
bool
;
}
struct
A
{
x
:
isize
}
impl
MyEq
for
isize
{
fn
eq
(&
self
,
other
:
&
isize
)
->
bool
{
*
self
==
*
other
}
}
impl
MyEq
for
A
{}
//~ ERROR not all trait items implemented, missing: `eq`
fn
main
()
{
}