2015-04-06 15:49:30 -05:00
|
|
|
|
// aux-build:rustdoc-extern-default-method.rs
|
2015-04-22 17:22:36 -05:00
|
|
|
|
// ignore-cross-compile
|
2022-03-29 12:30:54 -05:00
|
|
|
|
// ignore-tidy-linelength
|
2015-02-26 09:28:57 -06:00
|
|
|
|
|
2015-04-06 15:49:30 -05:00
|
|
|
|
extern crate rustdoc_extern_default_method as ext;
|
|
|
|
|
|
2022-03-29 12:30:54 -05:00
|
|
|
|
// 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.
|
|
|
|
|
//
|
2022-11-28 11:21:19 -06:00
|
|
|
|
// In older versions of rustdoc, the impl item (`a[@class="fn"]`) used to link to
|
2022-03-29 12:30:54 -05:00
|
|
|
|
// `#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!
|
|
|
|
|
|
2015-04-06 15:49:30 -05:00
|
|
|
|
// @count extern_default_method/struct.Struct.html '//*[@id="method.provided"]' 1
|
2022-11-28 11:21:19 -06:00
|
|
|
|
// @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"]'
|
2022-02-02 00:11:36 -06:00
|
|
|
|
// @has extern_default_method/struct.Struct.html '//*[@id="method.provided"]//a[@class="anchor"]/@href' #method.provided
|
2015-02-26 09:28:57 -06:00
|
|
|
|
pub use ext::Struct;
|