]> git.proxmox.com Git - rustc.git/blob - src/test/rustdoc/issue-100204-inline-impl-through-glob-import.rs
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / rustdoc / issue-100204-inline-impl-through-glob-import.rs
1 // aux-build:issue-100204-aux.rs
2 // build-aux-docs
3 // ignore-cross-compile
4
5 #![crate_name="second"]
6
7 extern crate first;
8
9 pub mod prelude {}
10
11 // @has first/struct.Bot.html '//h4[@class="code-header"]' 'pub fn new() -> Bot'
12 // @has second/struct.Bot.html '//h4[@class="code-header"]' 'pub fn new() -> Bot'
13 #[doc(inline)]
14 pub use first::*;