mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 17:24:06 +00:00
f784fa7bd9
Done by removing all uses of `#![no_core]`, and the reverting the ones that failed. More involved ones are in a later commit.
17 lines
520 B
Rust
17 lines
520 B
Rust
// edition:2018
|
|
|
|
// @set inner_id = "$.index[*][?(@.name=='inner')].id"
|
|
pub mod inner {
|
|
|
|
// @set public_id = "$.index[*][?(@.name=='Public')].id"
|
|
// @ismany "$.index[*][?(@.name=='inner')].inner.module.items[*]" $public_id
|
|
pub struct Public;
|
|
}
|
|
|
|
// @set import_id = "$.index[*][?(@.docs=='Outer')].id"
|
|
// @is "$.index[*][?(@.docs=='Outer')].inner.import.source" \"inner::Public\"
|
|
/// Outer
|
|
pub use inner::Public;
|
|
|
|
// @ismany "$.index[*][?(@.name=='simple_public')].inner.module.items[*]" $import_id $inner_id
|