1
Fork 0
rust/src/test/rustdoc-json/reexport/rename_private.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
354 B
Rust
Raw Normal View History

// edition:2018
#![no_core]
#![feature(no_core)]
2022-07-15 17:48:46 +02:00
2022-08-17 12:55:09 +02:00
// @is "$.index[*][?(@.name=='inner')].kind" \"module\"
// @is "$.index[*][?(@.name=='inner')].inner.is_stripped" "true"
mod inner {
2022-08-17 12:55:09 +02:00
// @has "$.index[*][?(@.name=='Public')]"
pub struct Public;
}
2022-08-17 12:55:09 +02:00
// @is "$.index[*][?(@.kind=='import')].inner.name" \"NewName\"
pub use inner::Public as NewName;