Add test for DerefMut methods

This commit is contained in:
Guillaume Gomez 2019-08-06 00:41:52 +02:00
parent d89bf91b2d
commit 4fb29f9fd2
1 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,29 @@
#![crate_name = "foo"]
use std::ops;
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'
pub struct Bar {
foo: Foo,
}
impl ops::Deref for Bar {
type Target = Foo;
fn deref(&self) -> &Foo {
&self.foo
}
}
impl ops::DerefMut for Bar {
fn deref_mut(&mut self) -> &mut Foo {
&mut self.foo
}
}