]> git.lizzy.rs Git - rust.git/blob - tests/ui/modules/mod_file.rs
Rollup merge of #106717 - klensy:typo, r=lcnr
[rust.git] / tests / ui / modules / mod_file.rs
1 // run-pass
2 // ignore-pretty issue #37195
3
4 // Testing that a plain .rs file can load modules from other source files
5
6 mod mod_file_aux;
7
8 pub fn main() {
9     assert_eq!(mod_file_aux::foo(), 10);
10 }