]> git.lizzy.rs Git - rust.git/blob - src/test/ui/modules/mod_dir_path3.rs
Merge commit '27afd6ade4bb1123a8bf82001629b69d23d62aff' into clippyup
[rust.git] / src / test / ui / modules / mod_dir_path3.rs
1 // run-pass
2 // ignore-pretty issue #37195
3
4 #[path = "mod_dir_simple"]
5 mod pancakes {
6     pub mod test;
7 }
8
9 pub fn main() {
10     assert_eq!(pancakes::test::foo(), 10);
11 }