Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
traits
/
auxiliary
/
traitimpl.rs
blob: fda5314cdbfa595c67ff263f0bd3bec0fa107c3a [
file
] [
log
] [
blame
] [
edit
]
// Test inherent trait impls work cross-crait.
pub
trait
Bar
<
'a> : '
a
{}
impl
<
'a> Bar<'
a
>
{
pub
fn
bar
(&
self
)
{}
}