]> git.lizzy.rs Git - rust.git/blob - tests/ui/modules/mod_dir_simple.rs
Account for method call and indexing when looking for inner-most path in expression
[rust.git] / tests / ui / modules / mod_dir_simple.rs
1 // run-pass
2 // ignore-pretty issue #37195
3
4 mod mod_dir_simple {
5     pub mod test;
6 }
7
8 pub fn main() {
9     assert_eq!(mod_dir_simple::test::foo(), 10);
10 }