mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 10:18:25 +00:00
9 lines
273 B
Rust
9 lines
273 B
Rust
// Regression test for https://github.com/rust-lang/rust/issues/100973
|
|
|
|
//@ is "$.index[?(@.name=='m1' && @.inner.module)].inner.module.is_stripped" true
|
|
//@ set m1 = "$.index[?(@.name=='m1')].id"
|
|
mod m1 {}
|
|
|
|
//@ is "$.index[?(@.inner.use)].inner.use.id" $m1
|
|
pub use m1::*;
|