2023-09-28 00:22:18 +00:00
|
|
|
// https://github.com/rust-lang/rust/issues/19190
|
2023-09-27 23:51:21 +00:00
|
|
|
#![crate_name="issue_19190"]
|
|
|
|
|
2015-04-13 23:23:32 +00:00
|
|
|
use std::ops::Deref;
|
|
|
|
|
|
|
|
pub struct Foo;
|
|
|
|
pub struct Bar;
|
|
|
|
|
|
|
|
impl Foo {
|
|
|
|
pub fn foo(&self) {}
|
2015-04-26 19:03:38 +00:00
|
|
|
pub fn static_foo() {}
|
2015-04-13 23:23:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Deref for Bar {
|
|
|
|
type Target = Foo;
|
|
|
|
fn deref(&self) -> &Foo { loop {} }
|
|
|
|
}
|
|
|
|
|
2024-06-21 12:03:08 +00:00
|
|
|
//@ has issue_19190/struct.Bar.html
|
|
|
|
//@ has - '//*[@id="method.foo"]//h4[@class="code-header"]' 'fn foo(&self)'
|
|
|
|
//@ has - '//*[@id="method.foo"]' 'fn foo(&self)'
|
|
|
|
//@ !has - '//*[@id="method.static_foo"]//h4[@class="code-header"]' 'fn static_foo()'
|
|
|
|
//@ !has - '//*[@id="method.static_foo"]' 'fn static_foo()'
|