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 Permalink Normal View History

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