summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc-json/reexport/mod_not_included.rs
blob: 1c49f213d1a71594e97998154555484eeb745b6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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;

// @has "$.index[*][?(@.name=='x' && @.inner.function)]"
// @has "$.index[*].inner[?(@.import.name=='x')].import.source" '"m1::x"'
// @!has "$.index[*][?(@.name=='m1')]"