Sign in
android
/
toolchain
/
rustc
/
87880447cc5437c45a3562596a9766d9797e7318
/
.
/
tests
/
rustdoc
/
issue-20175.rs
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
{}