Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
methods
/
auxiliary
/
ambig_impl_2_lib.rs
blob: 0ed68bf69011f91aa5324c0de849a816d8b6beb1 [
file
] [
log
] [
blame
]
pub
trait
Me
{
fn
me
(&
self
)
->
usize
;
}
impl
Me
for
usize
{
fn
me
(&
self
)
->
usize
{
*
self
}
}