f784fa7bd9
Done by removing all uses of `#![no_core]`, and the reverting the ones that failed. More involved ones are in a later commit.
11 lines
246 B
Rust
11 lines
246 B
Rust
// edition:2018
|
|
|
|
// @!has "$.index[*][?(@.name=='inner')]"
|
|
mod inner {
|
|
// @has "$.index[*][?(@.name=='Public')]"
|
|
pub struct Public;
|
|
}
|
|
|
|
// @is "$.index[*][?(@.inner.import)].inner.import.name" \"NewName\"
|
|
pub use inner::Public as NewName;
|