summaryrefslogtreecommitdiffstats
path: root/src/test/ui/methods/auxiliary/ambig_impl_2_lib.rs
blob: 0ed68bf69011f91aa5324c0de849a816d8b6beb1 (plain)
1
2
3
4
pub trait Me {
    fn me(&self) -> usize;
}
impl Me for usize { fn me(&self) -> usize { *self } }