mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-14 19:56:49 +00:00
11 lines
241 B
Rust
11 lines
241 B
Rust
//@ edition:2018
|
|
|
|
//@ !has "$.index[*][?(@.name=='inner')]"
|
|
mod inner {
|
|
//@ has "$.index[*][?(@.name=='Public')]"
|
|
pub struct Public;
|
|
}
|
|
|
|
//@ is "$.index[*][?(@.inner.use)].inner.use.name" \"NewName\"
|
|
pub use inner::Public as NewName;
|