blob: 401a6a44af9a4413f0a8235baf6137cd3cdcfd62 [file] [log] [blame]
pub trait MyTrait {
/// docs for my_trait_method
fn my_trait_method() {}
}
pub struct MyStruct;
impl MyTrait for MyStruct {}