summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/doc-assoc-item.rs
blob: 4f15418650c2d69b49ec2f71f1d235b92e50de62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub struct Foo<T> {
    x: T,
}

pub trait Bar {
    type Fuu;

    fn foo(foo: Self::Fuu);
}

// @has doc_assoc_item/struct.Foo.html '//*[@class="impl has-srclink"]' 'impl<T: Bar<Fuu = u32>> Foo<T>'
impl<T: Bar<Fuu = u32>> Foo<T> {
    pub fn new(t: T) -> Foo<T> {
        Foo {
            x: t,
        }
    }
}