rust/tests/rustdoc/hide-mut-methods-if-no-derefmut-impl-74083.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
389 B
Rust
Raw Normal View History

2024-04-06 21:41:09 +00:00
// https://github.com/rust-lang/rust/issues/74083
#![crate_name="foo"]
2020-07-06 20:06:58 +00:00
use std::ops::Deref;
pub struct Foo;
impl Foo {
pub fn foo(&mut self) {}
}
2024-04-06 21:41:09 +00:00
// @has foo/struct.Bar.html
// @!has - '//div[@class="sidebar-links"]/a[@href="#method.foo"]' 'foo'
2020-07-06 20:06:58 +00:00
pub struct Bar {
foo: Foo,
}
impl Deref for Bar {
type Target = Foo;
fn deref(&self) -> &Foo {
&self.foo
}
}