about summary refs log tree commit diff
path: root/tests/ui/modules/mod_dir_simple.rs
blob: edc76355f0cc9f62611a144eed3057f52093c89a (plain)
1
2
3
4
5
6
7
8
9
//@ run-pass

mod mod_dir_simple {
    pub mod test;
}

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