summaryrefslogtreecommitdiffstats
path: root/tests/ui/modules/mod_dir_recursive.rs
blob: b109d13d1643d8f0e54100639a0a88335c48312b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// run-pass
// ignore-pretty issue #37195

// Testing that the parser for each file tracks its modules
// and paths independently. The load_another_mod module should
// not try to reuse the 'mod_dir_simple' path.

mod mod_dir_simple {
    pub mod load_another_mod;
}

pub fn main() {
    assert_eq!(mod_dir_simple::load_another_mod::test::foo(), 10);
}