summaryrefslogtreecommitdiff
path: root/src/test/rustdoc/issue-29503.rs
blob: 49c9e3d8a09889a85c579fe8bcdcb604d8295dd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use std::fmt;

// @has issue_29503/trait.MyTrait.html
pub trait MyTrait {
    fn my_string(&self) -> String;
}

// @has - "//div[@id='implementors-list']//div[@id='impl-MyTrait-for-T']//h3[@class='code-header in-band']" "impl<T> MyTrait for T where T: Debug"
impl<T> MyTrait for T where T: fmt::Debug {
>>>>>>> 083cf2a97a8... rustdoc: Add more semantic information to impl ids
    fn my_string(&self) -> String {
        format!("{:?}", self)
    }
}

pub fn main() {}