0
0
mirror of https://github.com/rust-lang/rust.git synced 2024-12-01 13:18:54 +01:00
rust/tests/rustdoc-json/reexport/glob_private.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
1.2 KiB
Rust
Raw Normal View History

2021-02-26 23:55:08 +01:00
// edition:2018
#![no_core]
#![feature(no_core)]
// @is "$.index[*][?(@.name=='mod1')].inner.module.is_stripped" "true"
2021-02-26 23:55:08 +01:00
mod mod1 {
// @is "$.index[*][?(@.name=='mod2')].inner.module.is_stripped" "true"
2021-02-26 23:55:08 +01:00
mod mod2 {
2022-08-17 12:55:09 +02:00
// @set m2pub_id = "$.index[*][?(@.name=='Mod2Public')].id"
2021-02-26 23:55:08 +01:00
pub struct Mod2Public;
2022-08-17 12:55:09 +02:00
// @!has "$.index[*][?(@.name=='Mod2Private')]"
2021-02-26 23:55:08 +01:00
struct Mod2Private;
}
2022-07-15 17:48:46 +02:00
// @set mod2_use_id = "$.index[*][?(@.docs=='Mod2 re-export')].id"
// @is "$.index[*][?(@.docs=='Mod2 re-export')].inner.import.name" \"mod2\"
/// Mod2 re-export
2021-02-26 23:55:08 +01:00
pub use self::mod2::*;
2022-08-17 12:55:09 +02:00
// @set m1pub_id = "$.index[*][?(@.name=='Mod1Public')].id"
2021-02-26 23:55:08 +01:00
pub struct Mod1Public;
2022-08-17 12:55:09 +02:00
// @!has "$.index[*][?(@.name=='Mod1Private')]"
2021-02-26 23:55:08 +01:00
struct Mod1Private;
}
2022-07-15 17:48:46 +02:00
// @set mod1_use_id = "$.index[*][?(@.docs=='Mod1 re-export')].id"
// @is "$.index[*][?(@.docs=='Mod1 re-export')].inner.import.name" \"mod1\"
/// Mod1 re-export
2021-02-26 23:55:08 +01:00
pub use mod1::*;
// @ismany "$.index[*][?(@.name=='mod2')].inner.module.items[*]" $m2pub_id
// @ismany "$.index[*][?(@.name=='mod1')].inner.module.items[*]" $m1pub_id $mod2_use_id
// @ismany "$.index[*][?(@.name=='glob_private')].inner.module.items[*]" $mod1_use_id