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

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

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