2025-03-20 23:01:32 +00:00
|
|
|
//@ !has "$.index[?(@.name=='foo')]"
|
2021-03-24 15:54:20 +00:00
|
|
|
mod foo {
|
2025-03-20 23:01:32 +00:00
|
|
|
//@ has "$.index[?(@.name=='Foo')]"
|
2021-03-24 15:54:20 +00:00
|
|
|
pub struct Foo;
|
|
|
|
}
|
|
|
|
|
2024-08-05 00:44:35 +01:00
|
|
|
//@ has "$.index[*].inner[?(@.use.source=='foo::Foo')]"
|
2021-03-24 15:54:20 +00:00
|
|
|
pub use foo::Foo;
|
|
|
|
|
|
|
|
pub mod bar {
|
2024-08-05 00:44:35 +01:00
|
|
|
//@ has "$.index[*].inner[?(@.use.source=='crate::foo::Foo')]"
|
2021-03-24 15:54:20 +00:00
|
|
|
pub use crate::foo::Foo;
|
|
|
|
}
|