about summary refs log tree commit diff
path: root/src/test/rustdoc/extern-default-method.rs
diff options
context:
space:
mode:
authorAlbert Larsan <74931857+albertlarsan68@users.noreply.github.com>2023-01-05 09:13:28 +0100
committerAlbert Larsan <74931857+albertlarsan68@users.noreply.github.com>2023-01-11 09:32:08 +0000
commitcf2dff2b1e3fa55fa5415d524200070d0d7aacfe (patch)
tree40a88d9a46aaf3e8870676eb2538378b75a263eb /src/test/rustdoc/extern-default-method.rs
parentca855e6e42787ecd062d81d53336fe6788ef51a9 (diff)
downloadrust-cf2dff2b1e3fa55fa5415d524200070d0d7aacfe.tar.gz
rust-cf2dff2b1e3fa55fa5415d524200070d0d7aacfe.zip
Move /src/test to /tests
Diffstat (limited to 'src/test/rustdoc/extern-default-method.rs')
-rw-r--r--src/test/rustdoc/extern-default-method.rs23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/test/rustdoc/extern-default-method.rs b/src/test/rustdoc/extern-default-method.rs
deleted file mode 100644
index fc28b230a5f..00000000000
--- a/src/test/rustdoc/extern-default-method.rs
+++ /dev/null
@@ -1,23 +0,0 @@
-// aux-build:rustdoc-extern-default-method.rs
-// ignore-cross-compile
-// ignore-tidy-linelength
-
-extern crate rustdoc_extern_default_method as ext;
-
-// For this test, the dependency is compiled but not documented.
-//
-// Still, the struct from the external crate and its impl should be documented since
-// the struct is re-exported from this crate.
-// However, the method in the trait impl should *not* have a link (an `href` attribute) to
-// its corresponding item in the trait declaration since it would otherwise be broken.
-//
-// In older versions of rustdoc, the impl item (`a[@class="fn"]`) used to link to
-// `#method.provided` – i.e. "to itself". Put in quotes since that was actually incorrect in
-// general: If the type `Struct` also had an inherent method called `provided`, the impl item
-// would link to that one even though those two methods are distinct items!
-
-// @count extern_default_method/struct.Struct.html '//*[@id="method.provided"]' 1
-// @count extern_default_method/struct.Struct.html '//*[@id="method.provided"]//a[@class="fn"]' 1
-// @snapshot no_href_on_anchor - '//*[@id="method.provided"]//a[@class="fn"]'
-// @has extern_default_method/struct.Struct.html '//*[@id="method.provided"]//a[@class="anchor"]/@href' #method.provided
-pub use ext::Struct;