Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
rustdoc
/
auxiliary
/
rustdoc-extern-default-method.rs
blob: 12934238a8e92f5fccc4c8e38d843832c243aaf2 [
file
] [
log
] [
blame
] [
edit
]
#![
crate_type
=
"lib"
]
pub
trait
Trait
{
fn
provided
(&
self
)
{}
}
pub
struct
Struct
;
impl
Trait
for
Struct
{
fn
provided
(&
self
)
{}
}