diff options
| author | Guillaume Gomez <guillaume.gomez@huawei.com> | 2021-10-22 22:39:33 +0200 |
|---|---|---|
| committer | Guillaume Gomez <guillaume.gomez@huawei.com> | 2021-10-29 14:25:15 +0200 |
| commit | 0c38f31bf23506ad33bbd922ea6095f1010712df (patch) | |
| tree | d3c6ee062db7dba2780aee58b41846db38749aa7 /src/test/rustdoc/deref-recursive-pathbuf.rs | |
| parent | 8a473ca3469340741a7108d52dd488c799f70fad (diff) | |
| download | rust-0c38f31bf23506ad33bbd922ea6095f1010712df.tar.gz rust-0c38f31bf23506ad33bbd922ea6095f1010712df.zip | |
Add tests for recursive deref
Diffstat (limited to 'src/test/rustdoc/deref-recursive-pathbuf.rs')
| -rw-r--r-- | src/test/rustdoc/deref-recursive-pathbuf.rs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/test/rustdoc/deref-recursive-pathbuf.rs b/src/test/rustdoc/deref-recursive-pathbuf.rs new file mode 100644 index 00000000000..ac23eced386 --- /dev/null +++ b/src/test/rustdoc/deref-recursive-pathbuf.rs @@ -0,0 +1,24 @@ +// #26207: Show all methods reachable via Deref impls, recursing through multiple dereferencing +// levels and across multiple crates. + +// @has 'foo/struct.Foo.html' +// @has '-' '//*[@id="deref-methods-PathBuf"]' 'Methods from Deref<Target = PathBuf>' +// @has '-' '//*[@class="impl-items"]//*[@id="method.as_path"]' 'pub fn as_path(&self)' +// @has '-' '//*[@id="deref-methods-Path"]' 'Methods from Deref<Target = Path>' +// @has '-' '//*[@class="impl-items"]//*[@id="method.exists"]' 'pub fn exists(&self)' +// @has '-' '//*[@class="sidebar-title"]/a[@href="#deref-methods-PathBuf"]' 'Methods from Deref<Target=PathBuf>' +// @has '-' '//*[@class="sidebar-links"]/a[@href="#method.as_path"]' 'as_path' +// @has '-' '//*[@class="sidebar-title"]/a[@href="#deref-methods-Path"]' 'Methods from Deref<Target=Path>' +// @has '-' '//*[@class="sidebar-links"]/a[@href="#method.exists"]' 'exists' + +#![crate_name = "foo"] + +use std::ops::Deref; +use std::path::PathBuf; + +pub struct Foo(PathBuf); + +impl Deref for Foo { + type Target = PathBuf; + fn deref(&self) -> &PathBuf { &self.0 } +} |
