2022-08-28 02:35:44 +01:00
|
|
|
// Regression test for https://github.com/rust-lang/rust/issues/101103
|
|
|
|
|
|
|
|
|
|
mod m1 {
|
|
|
|
|
pub fn x() {}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub use m1::x;
|
|
|
|
|
|
2025-03-20 23:01:32 +00:00
|
|
|
//@ has "$.index[?(@.name=='x' && @.inner.function)]"
|
2025-03-21 00:16:41 +00:00
|
|
|
//@ has "$.index[?(@.inner.use.name=='x')].inner.use.source" '"m1::x"'
|
2025-03-20 23:01:32 +00:00
|
|
|
//@ !has "$.index[?(@.name=='m1')]"
|