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

#[path = "mod_dir_simple"]
mod pancakes {
    pub mod test;
}

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