summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/blanket-impl-29503.rs
blob: d6a132e1c263d7e96ec99cae8896d8660aeb8b1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// https://github.com/rust-lang/rust/issues/29503
#![crate_name="issue_29503"]

use std::fmt;

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

// @has - "//div[@id='implementors-list']//*[@id='impl-MyTrait-for-T']//h3[@class='code-header']" "impl<T> MyTrait for Twhere T: Debug"
impl<T> MyTrait for T
where
    T: fmt::Debug,
{
    fn my_string(&self) -> String {
        format!("{:?}", self)
    }
}

pub fn main() {}