Move /src/test to /tests
This commit is contained in:
parent
ca855e6e42
commit
cf2dff2b1e
27592 changed files with 0 additions and 0 deletions
15
tests/rustdoc/default-trait-method-link.rs
Normal file
15
tests/rustdoc/default-trait-method-link.rs
Normal file
|
@ -0,0 +1,15 @@
|
|||
#![crate_name = "foo"]
|
||||
|
||||
// @has foo/trait.Foo.html '//a[@href="trait.Foo.html#tymethod.req"]' 'req'
|
||||
// @has foo/trait.Foo.html '//a[@href="trait.Foo.html#method.prov"]' 'prov'
|
||||
|
||||
/// Always make sure to implement [`req`], but you don't have to implement [`prov`].
|
||||
///
|
||||
/// [`req`]: Foo::req
|
||||
/// [`prov`]: Foo::prov
|
||||
pub trait Foo {
|
||||
/// Required
|
||||
fn req();
|
||||
/// Provided
|
||||
fn prov() {}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue