]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/auxiliary/rustdoc-extern-default-method.rs
Rollup merge of #84464 - jyn514:type-kind, r=CraftSpider
[rust.git] / src / test / rustdoc / auxiliary / rustdoc-extern-default-method.rs
1 #![crate_type="lib"]
2
3 pub trait Trait {
4     fn provided(&self) {}
5 }
6
7 pub struct Struct;
8
9 impl Trait for Struct {
10     fn provided(&self) {}
11 }