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