blob: 69c0c0e6d5f3bcae0efda7971f4bd685753d2690 (
plain)
1
2
3
4
5
6
7
8
|
// 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::*;
|