diff options
| author | Oliver Middleton <olliemail27@gmail.com> | 2017-12-28 17:49:36 +0000 |
|---|---|---|
| committer | Oliver Middleton <olliemail27@gmail.com> | 2017-12-28 17:51:31 +0000 |
| commit | 95f9491bc797e9e41176dbb9fecc5cb8e27d95e7 (patch) | |
| tree | 9c55ca05818457575af21754bd8ff5596b46c328 /src/test | |
| parent | 0efdfa1d6220484770e3730062b92a9d2b2e20b9 (diff) | |
| download | rust-95f9491bc797e9e41176dbb9fecc5cb8e27d95e7.tar.gz rust-95f9491bc797e9e41176dbb9fecc5cb8e27d95e7.zip | |
rustdoc: Don't try to generate links for modules in import paths
The modules may be private or may even be enums so it would generate dead links.
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/rustdoc/issue-46766.rs | 16 | ||||
| -rw-r--r-- | src/test/rustdoc/issue-46767.rs | 18 |
2 files changed, 34 insertions, 0 deletions
diff --git a/src/test/rustdoc/issue-46766.rs b/src/test/rustdoc/issue-46766.rs new file mode 100644 index 00000000000..cf2dd58f45b --- /dev/null +++ b/src/test/rustdoc/issue-46766.rs @@ -0,0 +1,16 @@ +// 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 enum Enum{Variant} +pub use self::Enum::Variant; + +// @!has foo/index.html '//a/@href' './Enum/index.html' diff --git a/src/test/rustdoc/issue-46767.rs b/src/test/rustdoc/issue-46767.rs new file mode 100644 index 00000000000..855de150b0a --- /dev/null +++ b/src/test/rustdoc/issue-46767.rs @@ -0,0 +1,18 @@ +// 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"] + +mod private { + pub enum Enum{Variant} +} +pub use self::private::Enum::*; + +// @!has foo/index.html '//a/@href' './private/index.html' |
