rust/tests/rustdoc-json/reexport/in_root_and_mod.rs

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

14 lines
309 B
Rust
Raw Normal View History

// @!has "$.index[*][?(@.name=='foo')]"
mod foo {
2022-08-17 05:55:09 -05:00
// @has "$.index[*][?(@.name=='Foo')]"
pub struct Foo;
}
// @has "$.index[*].inner[?(@.import.source=='foo::Foo')]"
pub use foo::Foo;
pub mod bar {
// @has "$.index[*].inner[?(@.import.source=='crate::foo::Foo')]"
pub use crate::foo::Foo;
}