2024-02-16 20:02:50 +00:00
|
|
|
//@ run-pass
|
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
|
|
|
}
|