]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/issue-100204-inline-impl-through-glob-import.rs
Merge commit '7d53619064ab7045c383644cb445052d2a3d46db' into sync_cg_clif-2023-02-09
[rust.git] / tests / 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::*;