2018-08-30 14:18:55 +02:00
|
|
|
// run-pass
|
2016-10-12 20:54:41 +03:00
|
|
|
// ignore-pretty issue #37195
|
2012-11-09 16:31:44 -08:00
|
|
|
|
|
|
|
// Testing that a plain .rs file can load modules from other source files
|
|
|
|
|
|
|
|
mod mod_file_aux;
|
|
|
|
|
2013-02-01 19:43:17 -08:00
|
|
|
pub fn main() {
|
2013-05-18 22:02:45 -04:00
|
|
|
assert_eq!(mod_file_aux::foo(), 10);
|
2013-02-14 11:47:00 -08:00
|
|
|
}
|