about summary refs log tree commit diff
path: root/tests/rustdoc/extern-default-method.rs
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2025-05-05 17:30:40 +0200
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2025-05-05 17:49:12 +0200
commite14e19a67dcdd7437b29bd37b4aa1fde3e5fecee (patch)
tree72413ee76e1e858195fc1f623c0bc4e6da36f5fe /tests/rustdoc/extern-default-method.rs
parente245c3bc6bb7d278106649be9a03fc9b374e196b (diff)
downloadrust-e14e19a67dcdd7437b29bd37b4aa1fde3e5fecee.tar.gz
rust-e14e19a67dcdd7437b29bd37b4aa1fde3e5fecee.zip
Created `tests/rustdoc/extern` subfolder to limit number of files at the top level
Diffstat (limited to 'tests/rustdoc/extern-default-method.rs')
-rw-r--r--tests/rustdoc/extern-default-method.rs23
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/rustdoc/extern-default-method.rs b/tests/rustdoc/extern-default-method.rs
deleted file mode 100644
index 1af9fab152e..00000000000
--- a/tests/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;