2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2012-11-09 18:31:44 -06:00
|
|
|
|
|
|
|
// Testing that a plain .rs file can load modules from other source files
|
|
|
|
|
|
|
|
#[path = "mod_file_aux.rs"]
|
|
|
|
mod m;
|
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(m::foo(), 10);
|
2013-02-14 13:47:00 -06:00
|
|
|
}
|