summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/issue-32890.rs
blob: 970954433ec7248d9ce77d77cdbd32f64477581f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// @has issue_32890/struct.Foo.html
pub struct Foo<T>(T);

impl Foo<u8> {
    // @has - '//a[@href="#method.pass"]' 'pass'
    pub fn pass() {}
}

impl Foo<u16> {
    // @has - '//a[@href="#method.pass-1"]' 'pass'
    pub fn pass() {}
}

impl Foo<u32> {
    // @has - '//a[@href="#method.pass-2"]' 'pass'
    pub fn pass() {}
}