blob: 6a42e2afbf43c943d06ceb01cc8f660fae634637 [file] [log] [blame]
pub trait Foo {
fn foo(&self) {}
}
pub struct Bar;
// @has issue_20175/struct.Bar.html \
// '//*[@id="method.foo"]' \
// 'fn foo'
impl<'a> Foo for &'a Bar {}