mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
9 lines
288 B
Rust
9 lines
288 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.import)].inner.import.id" $m1
|
|
pub use m1::*;
|