blob: 48e253eadae50cf369eb173abd069e0c2682cc94 [file] [log] [blame]
// run-pass
// ignore-pretty issue #37195
// Testing that a plain .rs file can load modules from other source files
#[path = "mod_file_aux.rs"]
mod m;
pub fn main() {
assert_eq!(m::foo(), 10);
}