2022-08-27 20:35:44 -05:00
|
|
|
// Regression test for https://github.com/rust-lang/rust/issues/101103
|
|
|
|
|
|
|
|
#![feature(no_core)]
|
|
|
|
#![no_core]
|
|
|
|
|
|
|
|
mod m1 {
|
|
|
|
pub fn x() {}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub use m1::x;
|
|
|
|
|
2023-05-22 12:17:52 -05:00
|
|
|
// @has "$.index[*][?(@.name=='x' && @.inner.function)]"
|
|
|
|
// @has "$.index[*].inner[?(@.import.name=='x')].import.source" '"m1::x"'
|
2022-08-27 20:35:44 -05:00
|
|
|
// @!has "$.index[*][?(@.name=='m1')]"
|