Sign in
rust
/
rust
/
08cd08fbef8c6663b052d8d9e4930d5696cbb8a7
/
.
/
tests
/
rustdoc-html
/
extern
/
auxiliary
/
rustdoc-extern-default-method.rs
blob: 12934238a8e92f5fccc4c8e38d843832c243aaf2 [
file
]
#![
crate_type
=
"lib"
]
pub
trait
Trait
{
fn
provided
(&
self
)
{}
}
pub
struct
Struct
;
impl
Trait
for
Struct
{
fn
provided
(&
self
)
{}
}