summaryrefslogtreecommitdiffstats
path: root/tests/ui/modules/mod_file_with_path_attr.rs
blob: e739366954eb64f70567dcb2dc109d19a96df90e (plain)
1
2
3
4
5
6
7
8
9
10
// run-pass

// Testing that a plain .rs file can load modules from other source files

#[path = "mod_file_aux.rs"]
mod m;

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