Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
rustdoc
/
impl-ref-20175.rs
blob: b1a9286fd413896041e9287ef66b868bdf053fac [
file
] [
log
] [
blame
] [
edit
]
// https://github.com/rust-lang/rust/issues/20175
#![
crate_name
=
"issue_20175"
]
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
{}