mirror of
https://git.proxmox.com/git/rustc
synced 2025-07-24 06:23:49 +00:00
14 lines
275 B
Rust
14 lines
275 B
Rust
// edition:2018
|
|
|
|
#![no_core]
|
|
#![feature(no_core)]
|
|
|
|
// @!has "$.index[*][?(@.kind=='inner')]"
|
|
mod inner {
|
|
// @has "$.index[*][?(@.name=='Public')]"
|
|
pub struct Public;
|
|
}
|
|
|
|
// @is "$.index[*][?(@.kind=='import')].inner.name" \"NewName\"
|
|
pub use inner::Public as NewName;
|