forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#42145 - ollie27:rustdoc_inline_renamed, r=s…
…teveklabnik rustdoc: Fix names of items in cross crate reexported modules For renamed reexports the new name should be used. An example of this (as pointed out in rust-lang#27741 (comment)) is two instances of `StepBy` in [`std::iter`](https://doc.rust-lang.org/nightly/std/iter/index.html#structs). [`core::iter`](https://doc.rust-lang.org/nightly/core/iter/index.html#structs) is correct. Fixes rust-lang#37608
- Loading branch information
Showing
4 changed files
with
60 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
src/test/rustdoc/inline_cross/auxiliary/renamed-via-module.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
#![crate_name = "foo"] | ||
|
||
pub mod iter { | ||
mod range { | ||
pub struct StepBy; | ||
} | ||
pub use self::range::StepBy as DeprecatedStepBy; | ||
pub struct StepBy; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
// aux-build:renamed-via-module.rs | ||
// build-aux-docs | ||
// ignore-cross-compile | ||
|
||
#![crate_name = "bar"] | ||
|
||
extern crate foo; | ||
|
||
// @has foo/iter/index.html | ||
// @has - '//a/[@href="struct.DeprecatedStepBy.html"]' "DeprecatedStepBy" | ||
// @has - '//a/[@href="struct.StepBy.html"]' "StepBy" | ||
// @has foo/iter/struct.DeprecatedStepBy.html | ||
// @has - '//h1' "Struct foo::iter::DeprecatedStepBy" | ||
// @has foo/iter/struct.StepBy.html | ||
// @has - '//h1' "Struct foo::iter::StepBy" | ||
|
||
// @has bar/iter/index.html | ||
// @has - '//a/[@href="struct.DeprecatedStepBy.html"]' "DeprecatedStepBy" | ||
// @has - '//a/[@href="struct.StepBy.html"]' "StepBy" | ||
// @has bar/iter/struct.DeprecatedStepBy.html | ||
// @has - '//h1' "Struct bar::iter::DeprecatedStepBy" | ||
// @has bar/iter/struct.StepBy.html | ||
// @has - '//h1' "Struct bar::iter::StepBy" | ||
pub use foo::iter; |