Skip to content

Commit ec7da3d

Browse files
committed
rustdoc: Fix inlined renamed reexports in import lists
1 parent b8214dc commit ec7da3d

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
lines changed

src/librustdoc/visit_ast.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,8 @@ impl<'a, 'tcx> RustdocVisitor<'a, 'tcx> {
189189
}
190190
hir::ViewPathList(p, paths) => {
191191
let mine = paths.into_iter().filter(|path| {
192-
!self.maybe_inline_local(path.node.id(), None, false, om,
193-
please_inline)
192+
!self.maybe_inline_local(path.node.id(), path.node.rename(),
193+
false, om, please_inline)
194194
}).collect::<hir::HirVec<hir::PathListItem>>();
195195

196196
if mine.is_empty() {

src/test/rustdoc/issue-34473.rs

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
#![crate_name = "foo"]
12+
13+
mod second {
14+
pub struct SomeTypeWithLongName;
15+
}
16+
17+
// @has foo/index.html
18+
// @!has - SomeTypeWithLongName
19+
// @has foo/struct.SomeType.html
20+
// @!has - SomeTypeWithLongName
21+
// @!has foo/struct.SomeTypeWithLongName.html
22+
pub use second::{SomeTypeWithLongName as SomeType};

0 commit comments

Comments
 (0)