rust/tests/rustdoc/typedef.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
712 B
Rust
Raw Normal View History

pub trait MyTrait {
fn method_on_mytrait() {}
}
pub struct MyStruct;
impl MyStruct {
pub fn method_on_mystruct() {}
}
// @has typedef/type.MyAlias.html
// @has - '//*[@class="impl"]//h3[@class="code-header"]' 'impl MyAlias'
// @has - '//*[@class="impl"]//h3[@class="code-header"]' 'impl MyTrait for MyAlias'
// @hasraw - 'Alias docstring'
// @has - '//*[@class="sidebar"]//*[@class="location"]' 'MyAlias'
2020-05-05 06:48:47 -05:00
// @has - '//*[@class="sidebar"]//a[@href="#implementations"]' 'Methods'
// @has - '//*[@class="sidebar"]//a[@href="#trait-implementations"]' 'Trait Implementations'
/// Alias docstring
pub type MyAlias = MyStruct;
impl MyAlias {
pub fn method_on_myalias() {}
}
impl MyTrait for MyAlias {}