mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
15 lines
255 B
Rust
15 lines
255 B
Rust
// 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 {}
|