rust/tests/ui/modules/mod_file_with_path_attr.rs
2023-01-11 09:32:08 +00:00

12 lines
202 B
Rust

// 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);
}