about summary refs log tree commit diff
path: root/src/test/rustdoc/issue-19190.rs
blob: 4d3b76229702b4d6ea676eca309ef7116ced126d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use std::ops::Deref;

pub struct Foo;
pub struct Bar;

impl Foo {
    pub fn foo(&self) {}
    pub fn static_foo() {}
}

impl Deref for Bar {
    type Target = Foo;
    fn deref(&self) -> &Foo { loop {} }
}

// @has issue_19190/struct.Bar.html
// @has - '//*[@id="method.foo"]' 'fn foo(&self)'
// @!has - '//*[@id="method.static_foo"]' 'fn static_foo()'