about summary refs log tree commit diff
path: root/src/test/rustdoc
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2019-08-06 15:36:28 +0200
committerGitHub <noreply@github.com>2019-08-06 15:36:28 +0200
commite6994714d96eceef35ce6c420acd2fa2a17542e2 (patch)
treedf330e82efae8cc7422c4f6fe25b8ac2dcc9ba26 /src/test/rustdoc
parentc32735d03c5dffe4acf79f500bb2f248469a4e66 (diff)
parent4fb29f9fd2758a5c07328fc12aa771bb239f9450 (diff)
downloadrust-e6994714d96eceef35ce6c420acd2fa2a17542e2.tar.gz
rust-e6994714d96eceef35ce6c420acd2fa2a17542e2.zip
Rollup merge of #62821 - GuillaumeGomez:not-listed-methods, r=Mark-Simulacrum
Not listed methods

Fixes #60326.

cc @rust-lang/rustdoc
r? @QuietMisdreavus
Diffstat (limited to 'src/test/rustdoc')
-rw-r--r--src/test/rustdoc/deref-mut-methods.rs29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/test/rustdoc/deref-mut-methods.rs b/src/test/rustdoc/deref-mut-methods.rs
new file mode 100644
index 00000000000..0e27fc90b69
--- /dev/null
+++ b/src/test/rustdoc/deref-mut-methods.rs
@@ -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
+    }
+}