diff options
| author | kennytm <kennytm@gmail.com> | 2018-01-09 01:58:53 +0800 |
|---|---|---|
| committer | kennytm <kennytm@gmail.com> | 2018-01-09 03:37:19 +0800 |
| commit | de4e1a9773201ba89f77b3a1015e0a3ac9969cf1 (patch) | |
| tree | 98b710ec1b9b398b33b11a81c44ecf72ed3ae01a /src/test | |
| parent | 5ffaf4c291e179198045659a8554114064ab98ce (diff) | |
| parent | 8302044a5289deb3ed1ad8aa8c185c2d7045bc8b (diff) | |
| download | rust-de4e1a9773201ba89f77b3a1015e0a3ac9969cf1.tar.gz rust-de4e1a9773201ba89f77b3a1015e0a3ac9969cf1.zip | |
Rollup merge of #47263 - ollie27:rustdoc_private_macro_import, r=GuillaumeGomez
rustdoc: Don't import macros from private imports Fixes #47038
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/rustdoc/issue-47038.rs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/test/rustdoc/issue-47038.rs b/src/test/rustdoc/issue-47038.rs new file mode 100644 index 00000000000..453cd663d2c --- /dev/null +++ b/src/test/rustdoc/issue-47038.rs @@ -0,0 +1,20 @@ +// Copyright 2018 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. + +#![feature(decl_macro)] + +#![crate_name = "foo"] + +use std::vec; + +// @has 'foo/index.html' +// @!has - '//*[@id="macros"]' 'Macros' +// @!has - '//a/@href' 'macro.vec.html' +// @!has 'foo/macro.vec.html' |
