Files
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.

33 lines
1.1 KiB
Rust
Raw Normal View History

2021-02-26 22:55:08 +00:00
//@ edition:2018
//@ is "$.index[?(@.name=='mod1')].inner.module.is_stripped" "true"
2021-02-26 22:55:08 +00:00
mod mod1 {
//@ is "$.index[?(@.name=='mod2')].inner.module.is_stripped" "true"
2021-02-26 22:55:08 +00:00
mod mod2 {
//@ set m2pub_id = "$.index[?(@.name=='Mod2Public')].id"
2021-02-26 22:55:08 +00:00
pub struct Mod2Public;
//@ !has "$.index[?(@.name=='Mod2Private')]"
2021-02-26 22:55:08 +00: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.use.name" \"mod2\"
/// Mod2 re-export
2021-02-26 22:55:08 +00:00
pub use self::mod2::*;
//@ set m1pub_id = "$.index[?(@.name=='Mod1Public')].id"
2021-02-26 22:55:08 +00:00
pub struct Mod1Public;
//@ !has "$.index[?(@.name=='Mod1Private')]"
2021-02-26 22:55:08 +00: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.use.name" \"mod1\"
/// Mod1 re-export
2021-02-26 22:55:08 +00: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